InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a valid jump statement?(a) break(b) goto(c) continue(d) return |
|
Answer» The correct choice is (b) goto For explanation I would say: break, continue and return transfer control to another part of the program and returns back to caller after execution. However, goto is marked as not used in Java. |
|