Difference between Overloading and Overriding?
Answer Posted / stephen-pipes afrifa
Overloading: The function name is the same but the
parameters are different or have different signature
Overriding: The member function having the same name and
types of parameters as function in the base class.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the operation of overloading of an assignment operator.
What is using namespace std in cpp?
What are the operators in c++?
What is object in c++ wikipedia?
What is the use of c++ programming language in real life?
What is a constant? Explain with an example.
What is flush () in c++?
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
What is long in c++?
Explain the purpose of the keyword volatile.
Write a program to interchange 2 variables without using the third one.
Is it possible to have a recursive inline function in c++?
If dog is a friend of boy, is boy a friend of dog?
Can the creation of operator** is allowed to perform the to-the-power-of operations?
What is data hiding c++?