Answer Posted / reejusri
In symbian , we have a tool called profiler which provide
different type of information about the application(s) like
which thread is taking how much CPU time, memory usage,
life time of an object, resource utilization etc..,
Using of Profiler to get above info is called profiling.
To use this we have to add the profiler .lib and related
functionality code to our program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a block in c++?
What is the difference between delegation and implemented-in-terms-of?
What is the basic structure of a c++ program?
What is object file? How can you access object file?
How do I write a c++ program?
What are exceptions c++?
Can we use this pointer in a class specific, operator-overloading function for new operator?
What is the difference between global variables and static varables?
Is c++ a high level language?
Are c and c++ similar?
How to defines the function in c++?
Explain linked list using c++ with an example?
Who calls main function?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
What is a pointer with example?