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 |
How do you include a string in java?
Can you explain the Java thread lifecycle?
What is a treeset class?
explain System.out.println
107 Answers Calpine Technologies, Care, Cognizant, CTS, IBM, IBS, LibSys, Oracle, Spiro Solutions, TCS,
Is oracle java 11 free?
What is the difference between super class & sub class?
Can substring create new object?
garbate collector(GC)?
how to identify duplicate values in arraylist
What is an object?s lock? Give name of object?s that have locks?
What is collection class in java?
How to sort list of list in java?