1
Given:
public class Test {
public static void main(String[] args) {
try {
System.out.print("Try ");
throw new Exception();
} catch (Exception e) {
System.out.print("Catch ");
System.exit(1);
} finally {
System.out.print("Finally ");
}
System.out.println("Done ");
}
}
What is the result?
Please log in or register to have a possibility to add comment.