1 |
We use ............. loops to repeat a pattern multiple times. |
Loop
While loop
Nested
Simple loop
|
2 |
Each run of a loop is called an |
Condition
Iteration
Standard
Index
|
3 |
Which of the following is not a type of loop. |
for loop
while loop
do while loop
none of these
|
4 |
How many types of loop are in C language. |
1
2
3
4
|
5 |
If array first element has the index. |
0
1
2
3
|
6 |
If we need to repeat one or more statements, than we use. |
Index
array
Iteration
Loop
|
7 |
Each elemet of an array has an _____ that can be used with the array name as array __ name. |
Index
array
for loop
simple variable
|
8 |
Assigning values to an array for the fist times is called. |
Assign value
Array utilization
Control array
Array initialization
|
9 |
An important property of __________ is that it stores all the values at consecutive locations inside the computer memory. |
Loop
Array
for loop
index
|
10 |
An______ is a data structure that can hold multiple values of same data type. |
Loop
Array
For loop
Index
|
11 |
Which is a countainer to store collection of data items in a specific layout. |
Data structure
Simple Strucutre
Normal Structure
Complex structure
|
12 |
To initialize the array in a single statement, initialize it.............. declaration. |
At the time of
After
Before
Both a and b
|