What is multiple inheritance?

Answer Posted / jyoti lohani

the parent class behaviour & properties are define in child
class that's call inheritance. if child class inherit more
then one parent class that call multiple inheritance.

EX: class X
{
/* ---*/
}
class y
{
/*----*/
}
class z:x,y

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between inheritance and polymorphism?

577


Why do we use class in oops?

560


What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?

2110


c++ program to swap the objects of two different classes

1768


What is the full form of oops?

621






to find out the minimum of two integer number of two different classes using friend function

1645


What is destructor oops?

625


What are main features of oop?

640


What is the highest level of cohesion?

583


What is basic concept of oop?

708


Why is polymorphism needed?

605


What is encapsulation in oop?

613


Why do we use polymorphism?

583


What are the 4 main oop principles?

689


What is object in oop with example?

711