1 |
_________ structure allows repetition of a set of instructions. |
- A. Loop
- B. Conditional
- C. Control
- D. Data
|
2 |
How many types of loop are in C language. |
|
3 |
__________ part of for loop is executed first: |
- A. condition
- B. body
- C. intialization
- D. increment/decrement
|
4 |
array can be initialized _______ declaration: |
- A. at the time of
- B. after
- C. before
- D. both a & b
|
5 |
Assigning values to an array for the fist times is called. |
- A. Assign value
- B. Array utilization
- C. Control array
- D. Array initialization
|
6 |
Which makes it easier to read and write values in arrays. |
- A. Loop
- B. While loop
- C. end
- D. simple loop
|
7 |
If the size of an array is 100, the range of indexes will be ............ |
- A. 0 - 99
- B. 0 - 100
- C. 1 - 100
- D. 2 - 102
|
8 |
Using loops inside loops is called ................. loops |
- A. For
- B. While
- C. Nested
- D. Do- while
|
9 |
_______ structure allows repetition of a set of instructions: |
- A. loop
- B. conditional
- C. control
- D. data
|
10 |
__________ is the unique identifier, used to refer to the array: |
- A. data type
- B. array name
- C. array size
- D. none
|