Question
Easy

What is meant by multiple inheritance ?

1
Deriving a base class from derived class
2
Deriving a derived class from base class
3
Deriving a derived class from more than one base class
4
None of the mentioned
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Object-Oriented Programming (C++)
Topic: Inheritance
Correct Answer
Option C
Explanation

The correct option is (3): Multiple inheritance is a fundamental feature of Object-Oriented Programming (OOP) in languages like C++, where a single child class, also known as the derived class, is allowed to inherit attributes and methods from two or more parent classes, which are referred to as base classes. This powerful design choice enables the derived class to combine the functionalities and characteristics of diverse existing classes into a…Read More