Difference between Overloading and Overriding?
Answer Posted / kailash joshi
overloading : class a { volume(int a,int b)
}
class b { public volume(int a,int b,int c)
}
"different signatures"
overriding : class a { public volume(int a,int b)
}
class b { public volume(int a,int b,int c)
}
"same signatures";
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the basic concept of c++?
Define upcasting.
Can you please explain the difference between using macro and inline functions?
What does new do in c++?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
Describe new operator?
What are virtual constructors/destructors?
Write a program which uses Command Line Arguments
Arrange Doubly linked list in the ascending order of its integral value and replace integer 5 with 7?
How do you establish an is-a relationship?
What is the copy-and-swap idiom?
Does c++ cost money?
What is the header file for setw?
Define macro.
Describe private, protected and public?