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

INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?

1635


What is polymorphism and types?

602


What does and I oop mean?

614


What is the point of oop?

656


What are the 4 pillars of oop?

672






What is debug class?what is trace class? What differences are between them? With examples.

1610


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1458


What is encapsulation selenium?

554


What is a superclass in oop?

669


What are the three parts of a simple empty class?

1460


Is abstract thinking intelligence?

594


What are the 5 oop principles?

603


write a C++ program for booking using constructor and destructor.

2051


What is variable example?

595


Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

2008