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

should we use linear search or binary search if elements are placed in random order or mixed?in both cases? i need a little bit detail ans?thnks

2 Answers  


What are oops methods?

0 Answers  


WILL I GET A guaranteed JOB AFTER DOING bsc()IT) and GNIIT from an NIIT CENTRE??

21 Answers   Biocon, MIT, NIIT,


What is object in oops?

0 Answers  


What is the renewal class?

0 Answers   Ebix, IBM,






State what is encapsulation and friend function?

0 Answers   BirlaSoft,


What is extreme programming?

2 Answers  


write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.

0 Answers   Microsoft, TCS,


What's the full form of STL?

2 Answers  


1.explicit call for destructor 2.calling function inside a constructor. 3.base *b-new derived delete b; 4.delete p what it will delete. 5.size of base class and derived class int i,in base class and int j in derived. 6.int i-20 int main() { int i =5; printf("%d".::i); { int i =10; printf("%d".::i); } } 7.object slicing 8.new 9.function overloading(return type). 10.class base() { virtuval fun() { ----- } } class derivied:public base() { fun() { ----- } } int main() { derived d; } 11.how static function will call in C++? 12.default structures are in C++? 13.constructors should be in public . 14.virtuval constructor not exist. 15.multilevel inhritence. destructor order.

1 Answers   Tech Mahindra,


How to overload postfix operator in c++

1 Answers   Mphasis,


Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.....

4 Answers   Bally Technologies, IBM, SoftSol,


Categories