1z0-808 문제 66
Given:

What is the result?

What is the result?
1z0-808 문제 67
Given the code fragment:

What is the result?

What is the result?
1z0-808 문제 68
Given:

And given the code fragment:

What is the result?

And given the code fragment:

What is the result?
1z0-808 문제 69
Given the code fragment:

What is the result?

What is the result?
1z0-808 문제 70
public class Two {
public static void main(String[] args) {
try {
doStuff();
system.out.println("1");
}
catch {
system.out.println("2");
}}
public static void do Stuff() {
if (Math.random() > 0.5) throw new RunTimeException(); doMoreStuff();
System.out.println("3 ");
}
public static void doMoreStuff() {
System.out.println("4");
}
}
Which two are possible outputs?
public static void main(String[] args) {
try {
doStuff();
system.out.println("1");
}
catch {
system.out.println("2");
}}
public static void do Stuff() {
if (Math.random() > 0.5) throw new RunTimeException(); doMoreStuff();
System.out.println("3 ");
}
public static void doMoreStuff() {
System.out.println("4");
}
}
Which two are possible outputs?
