1 |
A loop within another loop is called |
- A. Inner loop
- B. Nested loop
- C. Counter loop
- D. None
|
2 |
Which statement is used to move the control to the start of loop body? |
- A. Continue
- B. Break
- C. Switch
- D. Goto
|
3 |
A loop with in a loop is called: |
- A. Nested loop
- B. Complex loop
- C. Infinite loop
- D. Dual loop
|
4 |
This statement may be used to stop a loop's current iteration and begin once: |
- A. Continue
- B. Break
- C. Terminate
- D. Next
|
5 |
When does the code block following while (x<100) execute? |
- A. When x is less then one hundred
- B. When x is greater then one hundred
- C. When x is equal to one hundred
- D. None
|
6 |
The loop structure that executes at least ones is |
- A. While
- B. Do-while
- C. For
- D. All
|
7 |
A loop whose execute never ends is called |
- A. Nested loop
- B. Forever loop
- C. Infinite loop
- D. Counter loop
|
8 |
Redundancy means |
- A. Duplication
- B. No-duplication
- C. Standards
- D. Microsoft office integration
|
9 |
Which loop structure always executes at least once? |
- A. Do-while
- B. For
- C. While
- D. All
|
10 |
Which of the following loop is available in C language? |
- A. While
- B. Do-while
- C. For
- D. All
|