1 |
While loop is also called: |
- A. Conditional loop
- B. Wend loop
- C. Counter loop
- D. Continuous loop
|
2 |
This statement may be used to stop a loop's current iteration and begin once: |
- A. Continue
- B. Break
- C. Terminate
- D. Next
|
3 |
This loop is a good choice when you know how many times you want the loop to iterate in advance of entering the loop? |
- A. While
- B. Do-while
- C. For
- D. Nested
|
4 |
Which of the following loop is called counter loop? |
- A. For
- B. While
- C. Do-while
- D. All
|
5 |
A loop with in a loop is called: |
- A. Nested loop
- B. Complex loop
- C. Infinite loop
- D. Dual loop
|
6 |
A special value that marks the end of a list of input data is called: |
- A. Terminal value
- B. Sentinel Value
- C. Loop control value
- D. Input value
|
7 |
The loop structure in which condition comes after the body of the loop is |
- A. While
- B. Do-while
- C. For
- D. All
|
8 |
Which statement is used to move the control to the start of loop body? |
- A. Continue
- B. Break
- C. Switch
- D. Goto
|
9 |
When is while loop more appropriate then for loop? |
- A. The terminating condition occurs unexpectedly
- B. The body of loop will be executed at least once
- C. The program will be executed at least once
- D. The number times the loop will be executed is known before the loop executes
|
10 |
Redundancy means |
- A. Duplication
- B. No-duplication
- C. Standards
- D. Microsoft office integration
|