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 |
To what does “event-driven” refer?
Explain virtual destructor?
How a macro differs from a template?
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
What is the difference between structures and unions?
Define a pointer to a data member of the type pointer to pointer?
Why do we need runtime polymorphism in c++?
Can I have a reference as a data member of a class? If yes, then how do I initialise it?
What is #include c++?
Explain container class.
Is c# written in c++?
What is the difference between an array and a list?