JAVA Flow Control Which of the following for loops will be an infinite loop? for(; ;) for(i=0; ; i++) All of these for(i=0 ; i<1; i--) for(; ;) for(i=0; ; i++) All of these for(i=0 ; i<1; i--) 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? NumberSeven Error NotSeven NumberSeven NotSeven 7 NumberSeven Error NotSeven NumberSeven NotSeven 7 ANSWER DOWNLOAD EXAMIANS APP
JAVA Flow Control What all gets printed when the following program is compiled and run.public class Test{ public static void main(String args[]){ int i, j=1; i = (j>1)?2:1; switch(i){ case 0: System.out.println(0); break; case 1: System.out.println(1); case 2: System.out.println(2); break; case 3: System.out.println(3); break; } }} 1 3 1 2 2 0 1 3 1 2 2 0 ANSWER DOWNLOAD EXAMIANS APP
JAVA Flow Control In java, ............ can only test for equality, where as .......... can evaluate any type of the Boolean expression. continue, if switch, if if, break if, switch continue, if switch, if if, break if, switch ANSWER DOWNLOAD EXAMIANS APP
JAVA Flow Control What is the value of a[1] after the following code is executed?int[] a = {0, 2, 4, 1, 3};for(int i = 0; i < a.length; i++) a[i] = a[(a[i] + 3) % a.length]; 2 4 0 3 1 2 4 0 3 1 ANSWER DOWNLOAD EXAMIANS APP
JAVA Flow Control What is the printout of the following switch statement?char ch = 'a'; switch (ch){ case 'a': case 'A': System.out.print(ch); break; case 'b': case 'B': System.out.print(ch); break; case 'c': case 'C': System.out.print(ch); break; case 'd': case 'D': System.out.print(ch);} abcd ab aa a abc abcd ab aa a abc ANSWER DOWNLOAD EXAMIANS APP