Question: 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:
Please give a TestProgram!?
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?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
