Multiple choice

Which of the following statements is/are not true about inheritance in C++?

  1. There is no multiple inheritance in C++.

  2. C++ supports multilevel inheritance.

  3. Hybrid inheritance is possible in C++.

  4. Both (1) and (3)

  5. None of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

This is a false statement as C++ determines multilevel inheritance and in that case, a single derived class can inherit from two or more base classes.