What is multiple inheritance ?

Answers were Sorted based on User's Feedback



What is multiple inheritance ?..

Answer / aswini.s

one derived class with several base class.

Is This Answer Correct ?    29 Yes 6 No

What is multiple inheritance ?..

Answer / sri

Multiple Inheritance is that one derived class having more
than one base class.

C/C++ will support multiple inheritance.
Java does not support multiple inheritance.

Is This Answer Correct ?    23 Yes 3 No

What is multiple inheritance ?..

Answer / rohan

[Base Classes]
music name height
\\ || //
\\ || //
\\ || //
\\ || //
Musician
[Example of multiple
inheritance]
Def.: A class derived from 2 or more superclass is called a
class inherited from by multiple inheritance.

Is This Answer Correct ?    21 Yes 1 No

What is multiple inheritance ?..

Answer / narasimulu

Multiple Inheritance occurs when a class inherits from more
than one parent.

Is This Answer Correct ?    8 Yes 1 No

What is multiple inheritance ?..

Answer / sivaramakrishnan

Inheritance is the process of creating new class called
derived from the existing or base class.
A derived class with more than one base class is known as
multiple inheritance.

Real time example: A children inherits features from both
father(base1) and mother(base2)

Is This Answer Correct ?    7 Yes 0 No

What is multiple inheritance ?..

Answer / sudha i r

multiple inheritence means the class(child class) inherited
from multiple base class(parent class)

Is This Answer Correct ?    5 Yes 1 No

What is multiple inheritance ?..

Answer / vikram

A derived class with more than one base class is known as
multiple inheritance.

Is This Answer Correct ?    4 Yes 0 No

What is multiple inheritance ?..

Answer / funny guy

Multiple Inheritance is a feature of OOPS where the derived
class can extend features from more than one class.

That means if we have class A and class B then class C can
extend class A and class B.

Having said that from Java point of view this feature is not
supported as it may result in Diamond Problem.

C++ does support this features.

Is This Answer Correct ?    4 Yes 1 No

What is multiple inheritance ?..

Answer / shivaramraje nimbalkarjoshi

The mechanism in which , A Call which is created my
deriving more than one classes is called Multiple
Inheritance.

Is This Answer Correct ?    7 Yes 5 No

What is multiple inheritance ?..

Answer / raj

one derived class with several base class.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More OOPS Interview Questions

Why do pointers exist?

0 Answers  


What is the difference between class and structure?

7 Answers  


How to execute business logic for only once ..?even though user clicks submit button multiple times by mistake..? (i disabled JavaScript)

1 Answers  


What does no cap mean?

0 Answers  


What are the components of marker interface?

0 Answers  






Which type does string inherit from?

0 Answers  


Precompilation ?

1 Answers   emc2,


What are callback functions in c++

1 Answers   SoftTech,


What makes a language oop?

0 Answers  


Does c++ support multilevel and multiple inheritance?

9 Answers   IBS, Wipro,


explain the concepts of oops?

1 Answers  


What is a linked list?

7 Answers   IBM, Neural Info,


Categories