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 Method overloading?

Answer Posted / abhishek kumar

A class having more then two method with the same name but
different signature.

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is encapsulation example?

1075


what is the sylabus for priliminaries?

2181


What is byval and byref? What are differences between them?

2225


What does it mean when someone says I oop?

1069


What is polymorphism and types?

1113


How do you define a class in oop?

1131


What is polymorphism and why is it important?

1048


what are the ways in which a constructors can be called?

2141


Which type does string inherit from?

1112


What is the difference between procedural programming and oops?

1144


What is the difference between a constructor and a destructor?

1271


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

1023


what is different between oops and c++

2557


#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

2632


What are the 3 principles of oop?

1126