InterviewSolution
Saved Bookmarks
| 1. |
What Is The Use Of Break Command? |
|
Answer» The break COMMAND is a simple way to escape out of a loop in progress. We can USE the break command to exit out from any loop, INCLUDING while and until loops. The break command is a simple way to escape out of a loop in progress. We can use the break command to exit out from any loop, including while and until loops. |
|