Contents

The multiple functions with same name and several types of parameters are called….
a) function overriding              
b) copy constructure
c) function overloading                      
d) operator overloading

c

Which of the following are advantages of function overloading?
a) reduce complexity of program          
b) increase the readability of program
c) speed up the execution of program
d) all of these

d

How many features are in function overloading?
a) one  
b) two 
c) three 
d) four

d

Explanation: number of arguments, data type of arguments, return type, order of arguments



Which of the following permit’s function overloading on C++?
a) number of arguments 
b) type
c) both a & b     
d) number of objects

c

Which of the following, we cannot overload in the function?
a) return function
b) caller function
c) called function         
d) main function

a

Function overloading is like which of the following?
a) operator overloading            
b) constructor overloading
c) destructor overloading          
d) function overloading

b