What are overloaded functions?
Very long functions that can hardly run
One function containing another one or more functions inside it.
Two or more functions with the same name but different number of parameters or type.
Function with more than one form
In which of the following does the function cannot be overloaded?
Return function
Caller
Called function
None of these
Which of the following permits function overloading in C++?
Type
Number of arguments
Both 1) and 2)
Which of the following concept of OOPS refers to the term operator overloading?
Inheritance
Message passing
Encapsulation
Polymorphism
Which of the following is correct about operator overloading?
Making C++ operators works with objects
Giving new meaning to existing C++ operators
Making new C++ operator
Both 1) and 2) correct
Which operator can be extended to strings through operator overloading?
+
==
-
*
Which of the following statement is correct about function overloading?
Do not use the same function name for two unrelated function
Overloading principle applies not only to functions, but to operators too
It makes code much more readable
Perform different operations on the same operands.
Which function has the ability to process the message or data in more than one form?
Function overloading
Constructor overloading
Operator overloading
Data overloading
Which term refers to giving additional functionality to the normal C++ operator?
Destructor overloading
Which function must be either member functions or friend functions?
Method function
Operator function
Constructor function
Data function