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 are the advantages of inheritance?

Answer Posted / parul.kataria007@gmail.com

by inheritance,we can create a link b/w the inherited class....

such that if we inherit class B from an existing class A and C from B,then we can use A and C together by inheritance... ennie

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what's the basic's in dot net

2179


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2620


What is balance factor?

1078


What are oops methods?

1002


What is encapsulation and abstraction? How are they implemented in C++?

1136


Why do we use class in oops?

962


What is oops with example?

1044


Why we use classes in oop?

1038


What is static in oop?

1079


What is polymorphism what are the different types of polymorphism?

1014


What is oops and its features?

1078


What language is oop?

1009


What is abstraction in oop?

1134


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

2129


What are the types of abstraction?

1075