InterviewSolution
Saved Bookmarks
| 1. |
What is true about a break?(a) Break stops the execution of entire program(b) Break halts the execution and forces the control out of the loop(c) Break forces the control out of the loop and starts the execution of next iteration(d) Break halts the execution of the loop for certain time frameThis question was addressed to me in my homework.My question comes from Control Statements topic in section Operators and Control Statements of Java |
|
Answer» CORRECT choice is (b) Break halts the EXECUTION and forces the control out of the loop For EXPLANATION: Break halts the execution and forces the control out of the loop. |
|