When to use Multiple Inheritance?

Answers were Sorted based on User's Feedback



When to use Multiple Inheritance?..

Answer / karthick

Multiple inheritance means the derived class inherits from
two or more base classes.

Is This Answer Correct ?    4 Yes 1 No

When to use Multiple Inheritance?..

Answer / nishikant sahu

When i want wrap the properties of more than one class into
a single entity(class) ,then i want to use MI,but strongly
recommend to avoid MI, if this scenario occur then you
design having some problem, and it cast a lots of issue and
overhead.

Is This Answer Correct ?    2 Yes 0 No

When to use Multiple Inheritance?..

Answer / divya

inheritance is a method which means objects of one class
get the properties of objects of another class. in this we
have 5 types of inheritance
multiple inheritance means deriving a class from two or
more base classes

Is This Answer Correct ?    1 Yes 1 No

When to use Multiple Inheritance?..

Answer / dasora

when do you like inherit from more than two class
it is called multiple inheritance

Is This Answer Correct ?    0 Yes 1 No

When to use Multiple Inheritance?..

Answer / dee

Multiplae inheritance is used when we want to reuse the
code from 2 ro 3 classes.

Is This Answer Correct ?    0 Yes 2 No

When to use Multiple Inheritance?..

Answer / meenu kathuria

Multiple Inheritance:
to acquire properties of two or more classes in a single class.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C++ General Interview Questions

What is cout flush?

0 Answers  


What are the benefits of operator overloading?

0 Answers  


What is the difference between "overloading" and "overridding"?

3 Answers  


When a function is made inline. Write the situation where inline functions may not work.

2 Answers  


Explain "passing by value", "passing by pointer" and "passing by reference" ?

5 Answers  






Describe Trees using C++ with an example.

0 Answers  


Describe new operator?

0 Answers  


Is c++ free?

0 Answers  


Why null pointer is used?

0 Answers  


What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00

0 Answers  


What are protected members in c++?

0 Answers  


Define a nested class. Explain how it can be useful.

0 Answers  


Categories