What is a "RTTI"?
Answers were Sorted based on User's Feedback
Answer / roshanpr
RTTI stands for run time type identification.
| Is This Answer Correct ? | 13 Yes | 0 No |
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 |
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 |
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 |
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 |
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is protected inheritance?
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
What type of question are asked in GE code writing test based on c++ data structures and pointers?
How can you quickly find the number of elements stored in a static array?
Can you explain the term "resource acquisition is initialization?"
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
Why do we use iterators?
What is null c++?
What is the difference between Char a[ ]=”string” and char *a=”String”
How can a called function determine the number of arguments that have been passed to it?