1 |
To initialize the array in a single statement, initialize it.............. declaration. |
At the time of
After
Before
Both a and b
|
2 |
___________ make it easier to read and write values in array. |
Loop
Conditions
Expressions
Functions
|
3 |
_________ part of for loop is executed first. |
Condition
Body
Initialization
Increments
|
4 |
Using loops inside loops is called ................. loops |
For
While
Nested
Do- while
|
5 |
Array can be initialized _________ declaration. |
At the time of
After
Before
Both a and b
|
6 |
______ is the unique identifiere, used ot refer to the array. |
Data type
Array name
Array size
None
|
7 |
_________ structure allows repetition of a set of instructions. |
Loop
Conditional
Control
Data
|
8 |
If the size of an array is 100, the range of indexes will be ............ |
0 - 99
0 - 100
1 - 100
2 - 102
|
9 |
Array elements are strored at ................. memory locations. |
Contiguous
Scattered
Divided
None
|
10 |
An array is a ______________ structure. |
Loop
Control
Data
Conditional
|
11 |
To initialize the array in a single statement, initialize it ___________ declaration: |
at the time of
after
before
both a & b
|
12 |
_______ make it easier to read and write values in array: |
loops
conditions
expressions
functions
|