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 class |
|
Answer» The correct choice is (b) Deriving a class from more than one direct base class The best explanation: In multiple inheritances, We are able to derive a class from more than one base class. |
|