What is multiple inheritance ?
Answer Posted / 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 |
Post New Answer View All Answers
Why do pointers exist?
What is a class oop?
What is encapsulation and abstraction? How are they implemented in C++?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
What is polymorphism used for?
What is the full form of oops?
What is encapsulation in oops?
Why interface is used?
What is a class and object?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
What is object and class in oops?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What is oops?what is its use in software engineering?
How to use CMutex, CSemaphore in VC++ MFC