Computer Applications
Which of the following is not an entry controlled loop ?
- for
- do-while
- while
- none of the above
Java Iterative Stmts
6 Likes
Answer
do-while
Reason — do-while is an exit controlled loop as it executes atleast once even when the condition is false.
Answered By
3 Likes
Related Questions
By default, the if-part and else-part of an if statement can contain these many statements in it.
- 2
- 1
- 5
- as many
Which of the following loops is mostly used for fixed number of iterations ?
- for
- do-while
- while
- none of the above
Which of the following is an exit controlled loop?
- for
- do-while
- while
- none of the above
Which of the following statements terminates the complete execution of a loop ?
- break
- continue
- terminate
- System.exit(0)