Which of the following is not a valid jump statement?
return
continue
break
goto
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.