1 |
___________ make it easier to read and write values in array. |
Loop
Conditions
Expressions
Functions
|
2 |
_________ part of for loop is executed first. |
Condition
Body
Initialization
Increments
|
3 |
Using loops inside loops is called ................. loops |
For
While
Nested
Do- while
|
4 |
Array can be initialized _________ declaration. |
At the time of
After
Before
Both a and b
|
5 |
______ is the unique identifiere, used ot 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 strored at ................. memory locations. |
Contiguous
Scattered
Divided
None
|
9 |
An array is a ______________ structure. |
Loop
Control
Data
Conditional
|
10 |
Whihc of the following is a decision statement is called. |
Nested if
Simple if
Many if
Multiple if
|
11 |
Selection statements within selection statements are called. |
if -else
condition
while
nested selection structures
|
12 |
_______ statement excutes the set of statements under if statements if the condition is true and execute the set of statemetns under else other wise, |
if - else
condition
while
compound
|