1 |
Printf() is a |
Built-in function
User-defined function
Local function
Keyword
|
2 |
Formal arguments are also called |
Actual arguments
Dummy arguments
Original arguments
Referenced arguments
|
3 |
Which of the following looks for the prototypes of functions are used in a program? |
Linker
Loader
Compiler
Parser
|
4 |
Which of the following is true about a function call? |
Stops the execution of the program
Transfers control to the called functions
Transfers control to the main function
|
5 |
Global variables are created in |
RAM
ROM
Hard disk
Cache
|
6 |
Function prototypes for built-in function are specified in |
Source files
Header files
Object files
Image files
|
7 |
A do-while loop is useful when |
The body of the loop will never be executed
The body of the loop will be executed at least once
The body of loop may never be execute
|
8 |
In the do while loop the test condition is evaluated |
After the loop is executed
Before the loop is executed
Between the loop is executed
All the above
|
9 |
The for loop contains the |
Initialize expression
Test expression
Increment expression
All the above
|
10 |
Comma operator is also called |
Update operator
Sequential evaluation operator
Unary operator
None
|