Google News
logo
CPP - Quiz(MCQ)
Virtual functions in C++ tells the compiler to perform ____ on such functions.
A)
late binding
B)
static binding
C)
compile time binding
D)
no binding

Correct Answer :   late binding


Explanation : Virtual function in C++ adds the power of late binding by deciding the type of object during run-time.

Advertisement