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
Which loop can be used for menu selection routine?
do while
for
while
do
Which statement is used to skip rest of loop and jumps over to the statement following the loop?
return
break
continue
goto
Where are label blocks useful?
Along with for loop
Along with while loop
Along with break and continue
Along with do while