Intermediate
Object-Oriented Programming Concepts
Q69 / 100
What is "multiple inheritance"?
Correct! Well done.
Incorrect.
The correct answer is A) A class inheriting from more than one parent class at once
A
Correct Answer
A class inheriting from more than one parent class at once
Explanation
Multiple inheritance lets a class derive from several base classes; some languages (e.g. Java, C#) disallow it for classes to avoid ambiguity, often offering interfaces instead.
Progress
69/100