What is a "RTTI"?

Answers were Sorted based on User's Feedback



What is a "RTTI"?..

Answer / roshanpr

RTTI stands for run time type identification.

Is This Answer Correct ?    13 Yes 0 No

What is a "RTTI"?..

Answer / sarmistha

RUN TIME TYPE INFORMATION. Afacility that allows an object
to b queried at runtime to determine its type.

Is This Answer Correct ?    11 Yes 0 No

What is a "RTTI"?..

Answer / manju

RTTI stands for Run Time Type Information.It is used to
provide information about the dynamic type of an object.

Is This Answer Correct ?    3 Yes 0 No

What is a "RTTI"?..

Answer / saravanan

already they had given abbr actually to find the runtime spec
we are using typeid() and typeinfo().

Is This Answer Correct ?    1 Yes 0 No

What is a "RTTI"?..

Answer / vijayanand

Declares a TestNamer for the specified type, using RTTI if
enabled, otherwise using macro string expansion.

RTTI is used if CPPUNIT_USE_TYPEINFO_NAME is defined and
not null.

Run-time Type Information

Is This Answer Correct ?    0 Yes 0 No

What is a "RTTI"?..

Answer / ravi kant

RTTI stands for run time type identification

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C++ General Interview Questions

Can we use clrscr in c++?

0 Answers  


What is the difference between #define debug 0 and #undef debug?

0 Answers  


Enter n no. of element and delete value from desire position

1 Answers  


What data encapsulation is in c++?

0 Answers  


How would perform Pattern Matching in C++?

0 Answers   Genpact,






What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack

0 Answers  


how many controls can we place on single form.

1 Answers   Microsoft,


What is object slicing and how can we prevent it?

2 Answers   Tech Mahindra,


in C++ , the word plus plus who found this?

4 Answers  


What is the keyword auto for?

0 Answers  


What are pointer-to-members? Explain.

0 Answers   iNautix,


Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }

2 Answers   CDAC, Wipro,


Categories