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 polymorphism? Explain with an example.

Answer Posted / radha

olymorphism basicilly provides multiple forms to a single
function or functionality to occure.

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the 3 principles of oop?

1119


What are the important components of cohesion?

1026


What is polymorphism what is it for and how is it used?

1022


i am getting an of the type can not convert int to int *. to overcome this problem what we should do?

2320


What do you mean by variable?

1040


What is encapsulation in ict?

1061


What does sksksk mean in text slang?

2123


What is an advantage of polymorphism?

1097


What is overriding in oop?

1039


Why is it so that we can have virtual constructors but we cannot have virtual destructors?

4947


Give two or more real cenario of virtual function and vertual object

2329


What is inheritance in oop?

1036


what type of question are asked in thoughtworks pair programming round ?

2218


#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

2627


Why do we use class in oops?

966