What is Virtual Inheritance ? During multiple inheritance Virtual Inheritance is used to remove the ambiguity of base class, when a derived class inherits the same base class via other classes in C++. For example,… 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