1 |
The functions which are available in C standard Library are called. |
Built in function
Library functions
Standard functions
All of these
|
2 |
How many types of function. |
1
2
3
4
|
3 |
Which function that is used to take input from the user. |
output
Input
Scan f
Print f
|
4 |
Which function is to desplay anything on computer screen. |
output
Input
Scanf
Print f
|
5 |
Which is approach of good problem solver. |
Divide
Divide and conquer
Simple problem
Complex problem
|
6 |
We can call a suer -defined function from another user defined function, same as we call other functions in ........... function. |
Main
Call
Define
Out
|
7 |
During the function call, the values passed to the function are called. |
Argument
Parameter
Routine
Number
|
8 |
Which means to transfer the control to that particular location. |
Calling the function
Opening the function
Body the function
Closing the function
|
9 |
The set of statement whihc are excuted in the function to fulfill the specified task. |
Body of the function
Calling the function
Opening a function
Closing the function
|
10 |
Which are variables of different data types that are used to receive the values passed t the function as input. |
Value
Input
Price
Parameter
|
11 |
The ____ of the function shold be related to its task. |
Name
Setup
Routine
Work
|
12 |
The __ of the function is the data type of the value returned by function. |
Return type
Input
Output
Value
|