What is multiple inheritance ?
Answer Posted / 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 |
Post New Answer View All Answers
What is class in oop with example?
write a program to find 2 power of a 5digit number with out using big int and exponent ?
What is purpose of inheritance?
What is destructor example?
write a C++ program for booking using constructor and destructor.
What is abstract class in oop?
What is the difference between procedural programming and oops?
What are the data types in oop?
What is constructor overloading in oop?
Can abstract class have normal methods?
Which method cannot be overridden?
What is the difference between a constructor and a destructor?
#include
Explain the concepts involved in Object Oriented programming.
Why multiple inheritance is not possible?