Advertisements
Advertisements
Question
A loop is a repetitive construct used to repeat execution of a block of statements. The for and while loops will not execute even once, if the condition is false in the beginning. The number of iterations in a loop can be determined by the number of repetitions made till the given condition is true. The condition is checked in the beginning and at the end of while and do-while loops, respectively.
Based on the above discussions, answer the following questions:
- Which of the following is an exit controlled loop?
- for loop
- while loop
- do-while
- all of the above
- In the given snippet, how many time the iterations of the loop will take place?
int n = 1000; while (n > 10) n = n / 10;
- 1 time
- 0 time
- 2 times
- 3 times
- Which one of the following loops will not be executed even once?
- for (k = 1; k <= 100; k++ );
- for (k = 10; k < 1; k++ );
- for (k = 1; k >= 1; k++ );
- for (k = 0; k < 10, k++ );
- Predict the output when the following program snippet is executed?
int n = 1000; do n = n / 10; while (n > 10); System.out.println(n);
- 1
- 100
- 10
- 0
Answer in Brief
Solution
- iii. do-while loop
- iii. 2 times
- iii. for (k = 10; k < 1; k++ );
- iii. 10
shaalaa.com
Is there an error in this question or solution?