http://www.javaprepare.com/quests/operat_q.html 24.Which all lines are part of the output when the following code is
compiled and run. Select all correct answers.
public class
test {
public static void main(
String args[]) {
for(int i = 0; i < 3; i++) {
for(int j = 3; j <= 0; j--) {
if(i == j) continue;
System.out.println(i + " " + j);
}
}
}
}
A.0 0
B.0 1
C.0 2
D.0 3
E.1 0
F.1 1
G.1 2
H.1 3
I.2 0
J.2 1
K.2 2
L.2 3
M.3 0
N.3 1
O.3 2
P.3 3
Q.The program does not print anything.
correct answer is q, how ??? is it bcoz the second loop checks for j<=0 ???