adspace
What is the difference between multiple and multilevel inheritance in c++?
Answer Posted / Ruchi Raghav
In C++, Multiple Inheritance refers to a class deriving from more than one base class. On the other hand, Multilevel Inheritance refers to a hierarchical relationship where a derived class is derived from another derived class instead of the original base class. The difference lies in the number of base classes and the levels of derivation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers