What is the difference between "overloading" and "overridding"?
Answer Posted / shivanannd
overloading means that we can use same method with same
name many times for multiple purpose in a class with
difference parameters.
overriding means we can refer a method of a base class with
same name in a derived class with same paameters.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of template?
What is an associative container in c++?
What are the advantages of using const reference arguments in a function?
What is c++ redistributable?
When is dynamic checking necessary?
What is stream and its types in c++?
Which software is best for coding?
What is c++ array?
What is bubble sort c++?
How do I start a c++ project?
Explain container class.
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
What is a unnitialised pointer?
What are advantages of c++?
What is meant by entry controlled loop? What all C++ loops are exit controlled?