Contents

Formal parameters and Actual parameters


Which of the following parameters appear in function declarator /header are called?
a) actual parameter      
b) formal parameter
c) non-formal parameter
d) none of these

b



The parameters which appear in function call and are used to send data to formal parameter is called….
a) actual parameter    
b) formal parameter
c) non-formal parameter
d) none of these

a

Local and Global function


How many types of functions in C++ programs?
a) one  
b) two 
c) three
d) four

b

Explanation: local functions, Global functions



The functions, which are defined the body of another function is called…
a) local function  
b) global function
c) formal function
d) actual function

a