Describe run-time type identification?



Describe run-time type identification?..

Answer / anuradha chaurasia

The ability to determine at run time the type of an object by using the typeid operator or the dynamic_cast operator.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What are the different types of Storage classes?

5 Answers  


What is a 'pure' virtual function and what's its use?

1 Answers  


Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL

0 Answers  


Describe linkages and types of linkages?

0 Answers  


Explain one-definition rule (odr).

0 Answers  






What is a try block?

0 Answers  


Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];

4 Answers   Quark,


What does n mean in c++?

0 Answers  


Is there finally in c++?

0 Answers  


What is the use of ‘using’ declaration?

1 Answers  


Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---

0 Answers  


How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?

0 Answers   Yahoo,


Categories