Which statement is used to skip rest of loop and jumps over to the statement following the loop?
return
break
continue
goto
What will be the output of the following-int s=3; if(s==3);{System.out.println("s is three") }else{System.out.println("no result")}
s is three
no result
Error