Contents

When do we define the default values for a function?
a) function is defined         
b) function is declared
c) scope of function is over                              
d) function is called

b

Which of the following features is used in function overloading and function with default argument?
a) encapsulation 
b) polymorphism
c) abstraction                      
d) modulatory

b

The variables that are listed in the function are called……
a) actual parameters        
b) declared parameters
c) passed parameters
d) none of these

a

To make large programs more manageable programmers modularize them into subprograms are called……
a) operators                         
b) classes
c) functions                         
d) none of these

c

Which of the following is not a storage class specifier in C++?
a) auto                                  
b) register
c) extern                                               
d) mat

d

Which of the following function return no value?
a) print Date ()    
b) sqrt ()
c) log ()                                  
d) cos ()

a