KVS DEC-2013
October 12, 2023Computer-Networks
October 12, 2023OOPS
Question 126 |
Which of the following is not true for overloaded function in C++?
Overloaded functions should have different arguments lists | |
Overloaded functions having the same argument lists should have a different return type. | |
Functions cannot be overloaded on the basis of one being static and the other non static | |
None of these |
Question 126 Explanation:
Two or more functions having same name but different argument(s) are known as overloaded functions. So option is not true.
Correct Answer: B
Question 126 Explanation:
Two or more functions having same name but different argument(s) are known as overloaded functions. So option is not true.