Basic Syntax and Semantics of try-catch-finally
Consider the code structure below and answer the questions that follow.
try {… code0 …} catch (Exception1 e1) {… code1 …} catch (Exception2 e2) {… code2 …} finally {… code3 …} code4 …a. Which lines (code0, code1, code2, code3, code4) execute if no exception is thrown?
b. Which lines (code0, code1, code2, code3, code4) execute if an exception of type Exception1 is thrown in code0?
c. Which lines (code0, code1, code2, code3, code4) execute if an exception of type Exception2 is thrown in code0?
d. Which lines (code0, code1, code2, code3, code4) execute if an exception is thrown in code0 that belongs to neither Exception1 nor Exception2?
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.