Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is multiple inheritance? Give Example

Answer Posted / hemanth

When class is derived from more than one base class, it is
called as multiple inheritance.
Class a {
int b;

public:
void fun();
}
Class C {
int d;

public:
void fun();
}
Class d :public a, public c {
int x;

void fun1();
}
----------

Here class d inherits class a and c, hence multiple inheritance.

Is This Answer Correct ?    33 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of abstraction?

1152


What is a class and object?

1108


Why do we need oop?

1274


How do you explain polymorphism?

1115


Plese get me a perfect C++ program for railway/airway reservation with all details.

3955


What are the 3 pillars of oop?

1245


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

2186


Explain virtual inheritance?

1256


What is a superclass in oop?

1221


What do you mean by Encapsulation?

1140


What is for loop and its syntax?

1134


Can private class be inherited?

1226


What is polymorphism give a real life example?

1078


Why do pointers exist?

1154


write a program to find 2 power of a 5digit number with out using big int and exponent ?

2440