What is problem with Runtime type identification?
Answers were Sorted based on User's Feedback
Answer / guest
Run Time Type Identification (RTTI) affects the performance
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / achal ubbott
RTTI feature was added to know the type of the object at
the run time. Most modern standard c++ compilers support
this feature. Now since the identification is done at the
runtime, this makes the execution slow.
| Is This Answer Correct ? | 2 Yes | 2 No |
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
What are multiple inheritances (virtual inheritance)?
Write a C program to calculate the salary of each employee in your company. You need to input the hours worked and the hourly rate. The company pays 1.5 times the hourly rate for all hours worked in excess of 48 hours. Use the formulas below to calculate the salary: if employee worked less than 48 hours salary = hours * rate; if employee worked more than 48 hours salary = 48.0 * rate + ( hours − 48.0 ) * rate * 1.5; You are required to use a loop to produce the sample output as given below.
What is c++ virtual inheritance?
What are the two main components of c++?
Will rust take over c++?
Which software is best for programming?
What is the difference between static link library and dynamic link library?
What is const in c++?
What does int * mean in c++?
Is c better than c++?
how to find the maximum of 10 numbers ?