When to use Multiple Inheritance?
Answers were Sorted based on User's Feedback
Answer / karthick
Multiple inheritance means the derived class inherits from
two or more base classes.
Is This Answer Correct ? | 4 Yes | 1 No |
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 |
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 |
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 |
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 |
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 |
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Why cstdlib is used in c++?
why c++ is not called strictly d super set of c?
How is data hiding achieved in c++?
What does asterisk mean in c++?
Describe Trees using C++ with an example.
What is static function? Explain with an example
What are the differences between public, private, and protected access?
12 Answers IBM, Oracle, Wipro,
What is the difference between new() and malloc()?
How would you stop a class from class from being derived or inherited?The constructer should not be Private,as object instantiation should be allowed.
How would you find out if a linked-list is a cycle or not?
Describe run-time type identification?