Intel Corporation interview question

Difference between method overloading and method over riding

Interview Answer

Anonymous

7 Apr 2016

Method Overloading: implementation class using the same name with different parameters. Method Overriding: implementation class using same class definition with out any change in parameter definition. Number of arguments and type of arguments should be same.

1