What are Virtual functions in C++ ? Virtual function is a member function which is re-defined by a derived class and declared within a base class. When you refer to a derived class object using a reference… View Answer
Find the wrong statement about Abstract Class ? Answer : B. We can’t create pointers to an abstract class View Answer
C++ supports run time polymorphism with the help of virtual functions, which is called ______ binding Answer : A. Dynamic View Answer
A virtual function that has no definition within the base class is called ? Answer : A. Pure virtual function View Answer
Which of the following statements about virtual base classes is correct ? Answer : B. It is used to avoid multiple copies of base class in derived class. View Answer