InterviewSolution
Saved Bookmarks
| 1. |
Which of these jump statements can skip processing the remainder of the code in its body for a particular iteration?(a) break(b) return(c) exit(d) continueI have been asked this question in unit test.My question is based upon Control Statements in section Operators and Control Statements of Java |
|
Answer» CORRECT OPTION is (d) continue To ELABORATE: NONE. |
|