1 |
We can call a suer -defined function from another user defined function, same as we call other functions in ........... function. |
- A. Main
- B. Call
- C. Define
- D. Out
|
2 |
__________ means to transfer the control to another function. |
- A. Calling
- B. Defining
- C. re-writing
- D. Including
|
3 |
Which describe imput and output of the function. |
- A. Calling
- B. Function signature
- C. Routine
- D. work
|
4 |
Which is wrong return statement. |
- A. Return x
- B. Return (x,y)
- C. Retrun (4,5)
- D. Both b and c
|
5 |
A function can have multiple parameters, bu tit cannot return more that ..... values. |
- A. One
- B. Two
- C. Three
- D. Four
|
6 |
How many types of function. |
|
7 |
Which functions performs commonly used mathematical calculations, string operation, imput/output operations etc. |
- A. Built -in function
- B. Library functions
- C. Standard functions
- D. All of these
|
8 |
The ____ of the function shold be related to its task. |
- A. Name
- B. Setup
- C. Routine
- D. Work
|
9 |
Char cd () { return 'a} , in this function " char" is............ |
- A. Bodies
- B. Return type
- C. Array
- D. Arguments
|
10 |
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
|