Explain about profiling?



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

Post New Answer

More C++ General Interview Questions

To what does “event-driven” refer?

0 Answers  


Explain virtual destructor?

0 Answers  


How a macro differs from a template?

0 Answers  


i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem

1 Answers   Reliance,


What is the difference between structures and unions?

0 Answers  






Define a pointer to a data member of the type pointer to pointer?

0 Answers  


Why do we need runtime polymorphism in c++?

0 Answers  


Can I have a reference as a data member of a class? If yes, then how do I initialise it?

0 Answers  


What is #include c++?

0 Answers  


Explain container class.

0 Answers  


Is c# written in c++?

0 Answers  


What is the difference between an array and a list?

0 Answers  


Categories