Use of pointers or reference to an abstract class gives rise to which among the following feature?

Use of pointers or reference to an abstract class gives rise to which among the following feature? Correct Answer Runtime polymorphism

The runtime polymorphism is supported by reference and pointer to an abstract class. This relies upon base class pointer and reference to select the proper virtual function.

Related Questions

Abstract class A has 4 virtual functions. Abstract class B defines only 2 of those member functions as it extends class A. Class C extends class B and implements the other two member functions of class A. Choose the correct option below.