C++ Inheritance Question:
Download Questions PDF

Explain the difference between Overriding vs. overloading?

C++ Inheritance Interview Question
C++ Inheritance Interview Question

Answer:

Overloading helps to create different behaviors of methods with the same name and scope. For instance we can overload a method to return float values and integer values.
Overriding on the other hand changes the behavior of a class to make it behave different than its parent class.

Download C++ Inheritance Interview Questions And Answers PDF

Previous QuestionNext Question
Explain about overriding?Give example of pure virtual functions?