Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What is the process of defining more than one method in a class differentiated by method signature?

a) Function overriding
b) Function overloading
c) Function doubling
d) None of the mentioned

Answer: b
Explanation: Function overloading is a process of defining more than one method in a class with same name differentiated by function signature i:e return type or parameters type and number. Example – int volume(int length, int width) & int volume(int length , int width , int height) can be used to calculate volume.

Join The Discussion