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...

When a computer is performing the tasks that a program tells it to do, we say the computer is running, or ____________ the program.

a. compiling b. processing c. executing d. reading

Computer Science & Information Technology

Consider a hash table of size 5, with the starting index 0, and a hash function (2*x)mod5. Assuming that the hash table is empty, which of the following is the content of the table when the sequence is 1, 3, 10?

a. 10, 3, 1, _, _ b. 1, 3, 10, _, _ c. 10, 3, _, 1, _ d. _, _, 10, 3, 1

Computer Science & Information Technology

____________________ programs can accept data without human intervention.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Potential visitors to a site are called its ____ audience.

A. preferred B. target C. chosen D. sample

Computer Science & Information Technology