1 |
The functions which are available in C standard Library are called. |
- A. Built in function
- B. Library functions
- C. Standard functions
- D. All of these
|
2 |
Char cd () { return 'a} , in this function " char" is............ |
- A. Bodies
- B. Return type
- C. Array
- D. Arguments
|
3 |
The value passed to the function are called. |
- A. Value
- B. Input
- C. Output
- D. Arguments
|
4 |
Dividing the program into multiple functions improves the ....... of the program. |
- A. Readability
- B. Open
- C. Read
- D. Write
|
5 |
If the definition of called function appears after teh definition of calling function, then..... is required. |
- A. Function signature
- B. Call
- C. Read
- D. Function
|
6 |
Which is approach of good problem solver. |
- A. Divide
- B. Divide and conquer
- C. Simple problem
- D. Complex problem
|
7 |
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
|
8 |
Which are variables of different data types that are used to receive the values passed t the function as input. |
- A. Value
- B. Input
- C. Price
- D. Parameter
|
9 |
Which of the following are advantages of using functions. |
- A. Reusability of code
- B. Separation of tasks
- C. Readability of code
- D. All of these
|
10 |
Which is wrong return statement. |
- A. Return x
- B. Return (x,y)
- C. Retrun (4,5)
- D. Both b and c
|