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 the size of a class which contains no member variables but has two objects??? is it 1 or 2??
Write a program to find the Factorial of a number
On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?
Differentiate between a copy constructor and an overloaded assignment operator.
What is the best sorting algorithm, when there is a large amount of data, that cannot be fit in the main memory. ?
What is general form of pure virtual function? Explain?
Explain "const" reference arguments in function?
What is virtual destructor? What is its use?
What do you understand by pure virtual function? Write about its use?
What is the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
How can you quickly find the number of elements stored in a static array?