Home » JAVA Programming » Decision Making » Question
  1. Which of the following is not a valid jump statement?
    1. return
    2. continue
    3. break
    4. goto
    5. None of these
Correct Option: D

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.



Your comments will be displayed only after manual approval.