What is multiple inheritance? Give Example
Answer Posted / palsaniya sadikhasan, meta.
a class is derived from an existing class in multiple level.
e.g.
class abc
{
int a;
public:
void getdata();
};
class xyz public:abc
{
int b;
public:
void getinput();
}
class pqr public:xyz
{
int c;
public:
void show();
}
| Is This Answer Correct ? | 9 Yes | 22 No |
Post New Answer View All Answers
What is solid in oops?
Why is object oriented programming so hard?
What is overloading in oops?
How to improve object oriented design skills?
What is the important feature of inheritance?
What is the renewal class?
What is destructor in oop?
write a program to find 2 power of a 5digit number with out using big int and exponent ?
What are functions in oop?
Why is polymorphism important in oop?
What is polymorphism in oop example?
What are main features of oop?
What is interface in oop?
Can destructor be overloaded?
What is the purpose of polymorphism?