InterviewSolution
Saved Bookmarks
| 1. |
What is hybrid inheritance? Give an example. |
|
Answer» It is the combination of hierarchical and multilevel inheritance. For example, The derived class D derive from the classes B and C whereas both the classes B and C are derived from base class A. |
|