JAVA Flow Control Determine output:public class Test{ public static void main(String args[]){ int i; for(i = 1; i < 6; i++){ if(i > 3) continue ; } System.out.println(i); }} 2 3 4 6 5 2 3 4 6 5 ANSWER DOWNLOAD EXAMIANS APP
JAVA Flow Control In java, ............ can only test for equality, where as .......... can evaluate any type of the Boolean expression. switch, if if, switch continue, if if, break switch, if if, switch continue, if if, break ANSWER DOWNLOAD EXAMIANS APP
JAVA Flow Control What will be the output of the following program?public class Test{ public static void main(String args[]){ int i = 0, j = 5 ; for( ; (i < 3) && (j++ < 10) ; i++ ){ System.out.print(" " + i + " " + j ); } System.out.print(" " + i + " " + j ); }} 0 6 1 5 2 5 3 5 0 6 1 7 2 8 3 9 Compilation Error 0 6 1 7 2 8 3 8 0 6 1 5 2 5 3 5 0 6 1 7 2 8 3 9 Compilation Error 0 6 1 7 2 8 3 8 ANSWER DOWNLOAD EXAMIANS APP
JAVA Flow Control Consider the following program written in Java.class Test{ public static void main(String args[]){ int x=7; if(x==2); // Note the semicolon System.out.println("NumberSeven"); System.out.println("NotSeven"); }}What would the output of the program be? NotSeven 7 NumberSeven NumberSeven NotSeven Error NotSeven 7 NumberSeven NumberSeven NotSeven Error ANSWER DOWNLOAD EXAMIANS APP
JAVA Flow Control Determine output:public class Test{ public static void main(String args[]){ int i, j; for(i=1, j=0;i<10;i++) j += i; System.out.println(i); }} 20 11 None of these 10 9 20 11 None of these 10 9 ANSWER DOWNLOAD EXAMIANS APP