SCJP Module-2 Question-12


 

SCJP Module-2 Question-12

The given sample program below checks the knowledge of for loop and flag in Java.

The given sample program below checks the knowledge of for loop and flag in Java.

What is the output of the following 'for' loop code :

public class Example12 {
public static void main(String[] args) {
int a, b;
flag: for (a = 0; a < 6; a++) {
for (b = 5; b > 2; b--) {
if (a == b) {
System.out.print(" " + b);
continue flag;
}
}
}

}
}}

What is the output of the given below 'for' loop code :

1.  5

2.  compile error

3.  5  4

4.  5  4 3

Answer :

(4)

Ads