1 |
__________ part of for loop is executed first: |
condition
body
intialization
increment/decrement
|
2 |
Using loops inside loops is called ________ loops: |
for
while
do-while
nested
|
3 |
array can be initialized _______ declaration: |
at the time of
after
before
both a & b
|
4 |
__________ is the unique identifier, used to refer to the array: |
data type
array name
array size
none
|
5 |
_______ structure allows repetition of a set of instructions: |
loop
conditional
control
data
|
6 |
If the size of an array is 100, the range of indexes will be _________: |
0-99
0-100
1-100
2-102
|
7 |
Array elements are stored at _________ memory locations: |
contiguous
scattered
divided
none
|
8 |
An array is a __________ structure: |
loop
control
data
conditional
|