Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Suppose that statement2 causes an exception in the following try-catch block: public void m2() { m1(); } public void m1() { try { statement1; statement2;
Suppose that statement2 causes an exception in the following try-catch block:
public void m2() {
m1();
}
public void m1() {
try {
statement1;
statement2;
statement3;
}
catch (Exception1 ex1) {
}
catch (Exception2 ex2) {
}
statement4;
}
Answer the following questions:
Will statement3 be executed? If the exception is not caught, will statement4 be executed? If the exception is caught in the catch block, will statement4 be executed?
---
Also, is it okay if someone gives me a TestProgram?
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started