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...

difference between overloading and overridding

Answer Posted / priyanka agrawal

In overloading functions will have same name but different
parameters lists but in overloading functions must have
same name and same signature.

Is This Answer Correct ?    1 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between abstraction and polymorphism?

1155


Write a program to sort the number with different sorts in one program ??

2430


Why is static class not inherited?

1152


What is encapsulation selenium?

1076


Can a destructor be called directly?

1135


Why do we use polymorphism in oops?

1106


#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

2686


What is an example of genetic polymorphism?

1242


What is a superclass in oop?

1220


What is abstraction in oops with example?

1352


What is purpose of inheritance?

1170


What is destructor oops?

1153


What is an advantage of polymorphism?

1136


What is data binding in oops?

1150


When not to use object oriented programming?

1179