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 |
What is friend class in c++ with example?
What is struct c++?
Disadvantages of c++
What is the use of function pointer?
What is the difference between global variables and local variable
Please explain the reference variable in c++?
What is an inclusion guard?
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
Can a Structure contain a Pointer to itself?
List out some of the OODBMS available?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;