Page 1 of 1

Suppose that statement3 throws an exception of type Exception3 in the following statement: try { statementl; statement2;

Posted: Fri May 20, 2022 6:27 pm
by answerhappygod
Suppose That Statement3 Throws An Exception Of Type Exception3 In The Following Statement Try Statementl Statement2 1
Suppose That Statement3 Throws An Exception Of Type Exception3 In The Following Statement Try Statementl Statement2 1 (40.99 KiB) Viewed 33 times
Suppose that statement3 throws an exception of type Exception3 in the following statement: try { statementl; statement2; statement3; } catch (Exception1 ex1) { } catch (Exception2 ex2) { } catch (Exception3 ex3) { Statement4; throw; } statements; Which statements are executed after statement3 is executed? a. statement1 b. statement4 c. statements d. statement2 e. statement3