Explain about profiling?
Answer / 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 |
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
What does namespace mean in c++?
Implement strcmp
What are protected members in c++?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
Evaluate !(1&&1||1&&0) a) Error b) False c) True
How can I learn dev c++ programming?
Why seem interrupt handlers as member functions to be impossible?
What's c++ used for?
How can an improvement in the quality of software be done by try/catch/throw?
if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int1 < int2 && int2 < int 3
What is a terminating character in c++?