Computer Applications
Which of the following statement causes complete termination of the loop?
- continue
- jump
- break
- terminate
Java Iterative Stmts
1 Like
Answer
break
Reason — break statement causes complete termination of the loop.
Answered By
1 Like
Related Questions
Which of the following is an exit-controlled loop?
- for
- do-while
- while
- None of these
Which of the following is an invalid loop?
- repeat
- while
- do-while
- for
Which of the following is an empty loop?
- for(i = 0; i < 5; i++);
- while (i < 5) i++;
- do {i++;} while (i < 5);
- All of these
Which of the following is not a jump statement in Java?
- return
- jump
- break
- continue