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 using namespace std in cpp?
Explain data encapsulation?
Describe linkages and types of linkages?
How can you link a c program with a c function?
What is binary search in c++?
Does dev c++ support c++ 11?
Show the declaration for a static member variable.
How do you remove an element from a set in c++?
What is a constructor in c++ with example?
Explain shallow copy?
What c++ is used for?
What is the full form of india?
How does class accomplish data hiding in c++?
What is the best way to declare and define global variables?
Should you pass exceptions by value or by reference?