1 |
The advantages of using functions are. |
- A. Readability
- B. Reusability
- C. Easy debugging
- D. All
|
2 |
Which is approach of good problem solver. |
- A. Divide
- B. Divide and conquer
- C. Simple problem
- D. Complex problem
|
3 |
Print f and scanf are examples of ...... function. |
- A. User
- B. Programmer
- C. Common
- D. Built in function
|
4 |
A function can have multiple parameters, bu tit cannot return more that ..... values. |
- A. One
- B. Two
- C. Three
- D. Four
|
5 |
The value passed to the function are called. |
- A. Value
- B. Input
- C. Output
- D. Arguments
|
6 |
The __ of the function is the data type of the value returned by function. |
- A. Return type
- B. Input
- C. Output
- D. Value
|
7 |
The functions whihc are available in C standard Library are called. |
- A. User define
- B. Built - in
- C. Recursive
- D. Repetition
|
8 |
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
|
9 |
Char cd () { return 'a} , in this function " char" is............ |
- A. Bodies
- B. Return type
- C. Array
- D. Arguments
|
10 |
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
|