Suppose that statement2 throws an exception of type Exception2 in the following statement:
```
try {
statement1;
statement2;
statement3;
}
catch (Exception1 ex1)
{
}
catch (Exception2 ex2)
{
}
catch (Exception3 ex3)
{
Statement4;
throw;
}
statement5;
```
Which statements are executed after statement2 is executed?
A. statement2
B. statement5
C. statement1
D. statement4
E. statement3
B. statement5
Computer Science & Information Technology
You might also like to view...
If you are printing a multiple-page worksheet, you can display row or column titles on every page by specifying the rows or columns that you want to repeat
Indicate whether the statement is true or false
Computer Science & Information Technology
What is the reserved block for default routing?
What will be an ideal response?
Computer Science & Information Technology