1 |
The parameters in function declaration are called: |
Formal parameters
Actual parameters
Both a and b
Returned parameters
|
2 |
Which of the following is incorrect? |
A function can call another function
A function can be called many times in a program
A function can return values input by the user
A function must at least one variable parameter
|
3 |
What is the variable name that is used by a function to receive passed values? |
Funciton
Parameter
Expression
Constant
|
4 |
Which of the following steps takes place when function is called: |
The control moves to the function that is called
All statements in the function body are executed
The control returns back to the calling funciton
All of these
|
5 |
The statement that activities a function is known as: |
Function call
Function output
Function design
Function definition
|
6 |
The first line of function definition is known as: |
Function header
Function body
Arguments
Return type
|
7 |
The function definition consists of: |
Function header or function declaration
Function body
Both a and b
None
|
8 |
Th process of sending an argument to a function is called: |
Sending
Filtering
Delivering
Passing
|
9 |
A value that can be sent to a function is known as: |
Return value
Indicator
Argument
Automatic variable
|
10 |
Function define can be written: |
Before main() function
After main() function
in a separate file
All of these
|