1 |
_______ make it easier to read and write values in array: |
loops
conditions
expressions
functions
|
2 |
__________ part of for loop is executed first: |
condition
body
intialization
increment/decrement
|
3 |
Using loops inside loops is called ________ loops: |
for
while
do-while
nested
|
4 |
array can be initialized _______ declaration: |
at the time of
after
before
both a & b
|
5 |
__________ is the unique identifier, used to refer to the array: |
data type
array name
array size
none
|
6 |
_______ structure allows repetition of a set of instructions: |
loop
conditional
control
data
|
7 |
If the size of an array is 100, the range of indexes will be _________: |
0-99
0-100
1-100
2-102
|
8 |
Array elements are stored at _________ memory locations: |
contiguous
scattered
divided
none
|
9 |
An array is a __________ structure: |
loop
control
data
conditional
|
10 |
If statement is used within another if statement is called: |
nested if
simple if
many if
multiple if
|
11 |
Which of the following is a decision making statement ? |
if
getch()
getche()
break
|
12 |
Selection statements within selection statements are called: |
if else
condition
while
nested selection structures
|