SCJP Module-2 Question-15


 

SCJP Module-2 Question-15

The program given below checks the your understating of core java program and also prepare you for SCJP examination

The program given below checks the your understating of core java program and also prepare you for SCJP examination

Find the Output of the following code :

public class Example15 {
public static void main(String[] args) {
for (int a = 0; a < 10; ++a) {
try {
if (a % 3 == 0)
throw new Exception("Except1");
try {
if (a % 3 == 1)
throw new Exception("Except2");
System.out.println(a);
} catch (Exception inside) {
a *= 2;
} finally {
++a;
}
} catch (Exception outside) {
a += 3;
} finally {
++a;
}
}
}
}

Find the Output of the above given code :

1. 5  8

2. 5

3. 8

4. compile error

Answer :

  5

  8 

Ads