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 / palsaniya sadikhasan, meta.

Sorry! Following example is the Multilevel inheritance.
which Post by me.


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 ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is html an oop?

1125


How to improve object oriented design skills?

1063


Explain the advantages of inheritance.

1190


What is the importance of oop?

1141


What are the data types in oop?

1157


What is a class oop?

1057


What language is oop?

1075


What is the difference between static polymorphism and dynamic polymorphism?

1136


What do you mean by abstraction?

1121


Which type does string inherit from?

1157


Why do we use oop?

1167


program for insertion ,deletion,sorting in double link list

2744


Why do we use polymorphism in oops?

1105


What is the types of inheritance?

1148


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

4211