1 |
Functions could be bult-in of........... |
- A. Admin define
- B. Server define
- C. User define
- D. Both a and b
|
2 |
During the function call, the values passed to the function are called. |
- A. Argument
- B. Parameter
- C. Routine
- D. Number
|
3 |
A ____ is a block of statements that gets some inputs and provides some output. |
- A. Function
- B. Program
- C. Reader
- D. Printer
|
4 |
Input of a function are called __________ of the function. |
- A. Function
- B. Program
- C. Reader
- D. Parameters
|
5 |
Char cd () { return 'a} , in this function " char" is............ |
- A. Bodies
- B. Return type
- C. Array
- D. Arguments
|
6 |
If there are three return statements in the function body, ..... of them will be executed. |
- A. One
- B. Two
- C. Three
- D. First and last
|
7 |
Which is approach of good problem solver. |
- A. Divide
- B. Divide and conquer
- C. Simple problem
- D. Complex problem
|
8 |
Which is wrong return statement. |
- A. Return x
- B. Return (x,y)
- C. Retrun (4,5)
- D. Both b and c
|
9 |
Which means to transfer the control to that particular location. |
- A. Calling the function
- B. Opening the function
- C. Body the function
- D. Closing the function
|
10 |
__________ means to transfer the control to another function. |
- A. Calling
- B. Defining
- C. re-writing
- D. Including
|