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 |
What are objects in oop?
//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(); }
what is inline function?
What is the important feature of inheritance?
What are generic functions and generic classes?
what is the basic concept of inheritance?
Polymorphism with an example?
What is overloading in oop?
what is an qt4 interface?
What is a function in oop?
Can we have inheritance without polymorphism?
What is the main purpose of inheritance law?