Multiple choice

If a class inherits from more than one base class ,it is called as _______

  1. multiple inheritance

  2. single inheritance

  3. multi level inheritance

  4. hybrid inheritance

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

Multiple inheritance occurs when a class inherits from more than one base class, combining features from multiple parents. Option B (Single) is one base class. Option C (Multi-level) is a chain of inheritance (grandparent -> parent -> child). Option D (Hybrid) combines multiple types of inheritance.