Google News
logo
CPP - Quiz(MCQ)
What is vtable in C++?
A)
Lookup table to resolve function calls in static manners
B)
Lookup table to check how many functions are there int he program
C)
Lookup table to resolve function calls in dynamic manners
D)
Lookup table to see which are the functions available for calls throughout the program

Correct Answer :   Lookup table to resolve function calls in dynamic manners


Explanation : vtable is a lookup table that is used to resolve the function calls in dynamic/late binding manners.

Advertisement