1 |
% f is used for |
Double
Float
Integer
Short
|
2 |
Function prototypes for built-in functions are specified in |
Source files
Header files
Object files
Image files
|
3 |
Which of the following is true about a function call |
Stop the execution of the program
Transfer control to the called function
Transfer control to the main function
Resumes the execution of the program
|
4 |
Which of the following looks for the prototypes of functions used in a program |
Linker
Loader
Compiler
Parser
|
5 |
The name of actual and formal parameters |
May or may not be same
Must be same
Must be different
Must be in lowercase
|
6 |
In C program two functions can have |
Same name
Same parameters
Same name & parameters
Same name but different parameters
|
7 |
Format arguments are also called |
Actual arguments
Dummy arguments
Original
Referenced arguments
|
8 |
If for each entity in B there is only one related entity in A then the relationship between the entities is |
One to one
One to many
Many to many
None
|
9 |
All numbers greater than 0 and less than 100 |
< 0 and > = 100
> 0 and < = 100
< > 100
> = 1
|
10 |
To select all records that begin with letters A through G |
<="G"
Like "G"
<> A
> A
|
11 |
Add new record to the table in datasheet by typing data beside the |
*
!
@
=
|
12 |
The name cannot exceed characters in length |
64
50
56
70
|
13 |
A record is a ------------------- in table |
row
field
table
data
|
14 |
A table with five fields has a degree of |
5
2
10
none
|
15 |
The table columns describe the ? |
data type
actual data
unique name
all
|
16 |
A label is meaningful only for |
for
while
goto
all
|
17 |
Go to statement can not work properly without |
condition
operator
label
none
|