1 |
If the definition of called function appears after teh definition of calling function, then..... is required. |
Function signature
Call
Read
Function
|
2 |
If the definition of called function appears before the definition of calling functiion, then ...... is not required. |
Function signature
Call
Read
Function
|
3 |
The value passed to the function are called. |
Value
Input
Output
Arguments
|
4 |
Which is wrong return statement. |
Return x
Return (x,y)
Retrun (4,5)
Both b and c
|
5 |
The _______ does not describe how the function performs the task assigned to it. |
Return value
Function signature
Output
Reader
|
6 |
A function can have multiple parameters, bu tit cannot return more that ..... values. |
One
Two
Three
Four
|
7 |
Output of the function is called its. |
Return values
Input
Output
Reader
|
8 |
Input of a function are called __________ of the function. |
Function
Program
Reader
Parameters
|
9 |
A ____ is a block of statements that gets some inputs and provides some output. |
Function
Program
Reader
Printer
|
10 |
Dividing the program into multiple functions improves the ....... of the program. |
Readability
Open
Read
Write
|
11 |
Print f and scanf are examples of ...... function. |
User
Programmer
Common
Built in function
|
12 |
Which functions performs commonly used mathematical calculations, string operation, imput/output operations etc. |
Built -in function
Library functions
Standard functions
All of these
|