subject

Consider the following code (assume that comments are replaced with real code that works as speciied): public class TestExceptions {
static void e() {
// Might cause any of the following unchecked exceptions to be
// thrown:
// Ex1, Ex2, Ex3, Ex4
}
static void April() { try {
e();
} catch (Ex1 ex) { System. out. println("April caught Ex1");
}
}
static void March() {
try {
April();
} catch (Ex2 ex) { System. out. println("March caught Ex2");
// now cause exception Ex1 to be thrown
}
}
static void February() {
try {
March();
} catch (Ex1 ex) { System. out. println("February caught Ex1");
} catch (Ex3 ex) { System. out. println("February caught Ex3");
}
}
static void a() { try {
February();
} catch (Ex4 ex) {
System. out. println("January caught Ex4");

// now cause exception Ex1 to be thrown
} catch (Ex1 ex) { System. out. println("January caught Ex1");
}
}
public static void main(String[] args) { January();
}
}

Assume now that this program is run four times. The first time, method throws exception Ex1, the second time, it throws exception Ex2, etc.

What are the results of the four runs (a or b)?

a.
1. The program prints: April caught Ex1
2. The program prints: March caught Ex2 February caught Ex1
3. The program prints: February caught Ex3
4. The program prints: January caught Ex4
And execution stops due to an uncaught exception Ex1 thrown in
main()

b.
1. The program prints: April caught Ex3
2. The program prints: March caught Ex2 February caught Ex2
3. The program prints: March caught Ex3
4. The program prints: January caught Ex4
And execution stops due to an uncaught exception Ex1 thrown in
main()

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 18:00
Budgets you to do all of the following expect a) send frivolously b) avoid over spending c) gain financial independence d) examine your priorities and goals
Answers: 2
question
Computers and Technology, 22.06.2019 20:00
What is used to analyze and summarize your data without graphical support
Answers: 1
question
Computers and Technology, 23.06.2019 09:30
Why is an outfitting a workspace with video games in a technology development company considered a strategic use of money
Answers: 1
question
Computers and Technology, 23.06.2019 10:00
Install and use wireshark program ( send back screen shots and other vital information) case project 3-2: decode a tcp segment in a wireshark capture in this chapter, you walked through tcp segment to interpret the data included in its header. in this project, you use wireshark to capture your own http messafes, examine the tcp headers, and practice interpreting the data you'll find there. 1. open wireshark and snap the window to one side of your screen. open a browser and snap that window to the other side of your screen so you can see both windows.
Answers: 2
You know the right answer?
Consider the following code (assume that comments are replaced with real code that works as speciied...
Questions
question
Mathematics, 01.12.2021 19:10
question
Mathematics, 01.12.2021 19:10
question
Mathematics, 01.12.2021 19:10
Questions on the website: 13722360