Examveda

What is vtable in C++?

A. Lookup table to resolve function calls in dynamic manners

B. Lookup table to resolve function calls in static manners

C. Lookup table to see which are the functions available for calls throughout the program

D. Lookup table to check how many functions are there int he program

Answer: Option A


Join The Discussion

Related Questions on C plus plus miscellaneous

What is the difference between '++i' and 'i++' in C++?

A. None of the above

B. They both have the same effect

C. '++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it

D. '++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it