Explain break statement and continue statement?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
The break statement exits the loop execution and starts
executing the statement just after the loop.
The continue statement stops executing the rest of the
current iteration and starts the next iteration.
| Is This Answer Correct ? | 26 Yes | 4 No |
Answer / shambhu kumar
The break keyword halts the execution of the current loop
and forces control out of the loop.
The continue is similar to break, except that instead of
halting the execution of the loop, it starts the next
iteration.
| Is This Answer Correct ? | 16 Yes | 2 No |
Answer / ravikiran(aptech mumbai)
break statement will through you out of the loop.
where as continue will aboandon the current iteration and
will make you to continue with next iteration
| Is This Answer Correct ? | 10 Yes | 2 No |
What is final?
How to stop a thread in java? Explain about sleep () method in a thread?
What do you meant by active and passive objects?
What is externalizable interface?
What happens if an exception is not caught?
List out five keywords related to exception handling ?
What is difference between final and finally in java?
Explain why wait(), notify() and notifyall() methods are in object class rather than in thread class?
What does a za z0 9 mean?
What are "class access modifiers" in Java?
What is the name of the java compiler?
What are the characteristics of Final,Finally and Finalize keywords.