difference between overloading and overridding

Answer Posted / priyanka agrawal

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

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we override main method?

853


What is the difference between static polymorphism and dynamic polymorphism?

864


What exactly is polymorphism?

880


Can destructor be overloaded?

811


What is polymorphism give a real life example?

777


What are the three parts of a simple empty class?

1781


What is the significance of classes in oop?

821


What do you mean by abstraction?

836


What is coupling in oop?

792


I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...

1849


Can an interface inherit a class?

799


Write a program to reverse a string using recursive function?

2043


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

789


#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

2389


What is class and object in oops?

854