What is multilevel inheritance?



What is multilevel inheritance?..

Answer / Shiv Ram Verma

Multilevel inheritance is a type of inheritance where a derived class can itself serve as a base class for another derived class. This creates a chain of inheritance.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

What are objects in oop?

1 Answers  


//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }

1 Answers  


what is inline function?

3 Answers  


What is the important feature of inheritance?

1 Answers   BPL,


What are generic functions and generic classes?

5 Answers  


what is the basic concept of inheritance?

9 Answers  


Polymorphism with an example?

8 Answers   Accenture, emc2,


What is overloading in oop?

1 Answers  


what is an qt4 interface?

1 Answers   IBM,


What is a function in oop?

1 Answers  


Can we have inheritance without polymorphism?

1 Answers  


What is the main purpose of inheritance law?

1 Answers  


Categories