InterviewSolution
Saved Bookmarks
| 1. |
Pick out the correct statement about multiple inheritances.(a) Deriving a class from one direct base class(b) Deriving a class from more than one direct base class(c) Deriving a class from more than one direct derived class(d) Deriving a class from more than one direct derivedbase classThis question was posed to me by my college professor while I was bunking the class.My question comes from Design of Class Hierarchies topic in section Derived Classes, Templates & Exception Handling in C++ of C++ |
|
Answer» The correct CHOICE is (B) Deriving a class from more than one direct base class |
|