11.3 Q6: In Java, after an exception is handled, control resumes . This is
known as the model of exception handling.
a. after the last catch block (or the finally block, if there is one), termination
b. after the last catch block (or the finally block, if there is one), resumption
c. just after the throw point, termination
d. just after the throw point, resumption
11.3 Q7: What is the difference between a try block and a try statement?
a. There is no difference; the terms can be used interchangeably.
b. A try statement refers to the block of code following the keyword try, while the
try block refers to the try keyword and the block of code following this keyword.
c. The try block refers to the keyword try followed by a block of code. The try
block and its corresponding catch and/or finally clauses together form a try
statement.
d. The try statement refers to the keyword try followed by a block of code. The try
statement and its corresponding catch and/or finally clauses together form a try
block.
11.3 Q8: The throws clause of a method:
a. specifies the exceptions a method catches.
b. specifies the exceptions thrown by the calling method.
c. specifies the exceptions a method throws.
d. specifies the exceptions a method throws and catches.
11.4 Q1: Which of the following errors is synchronous?
a. Divide by zero.
b. Arithmetic overflow.
c. Unsuccessful memory allocation.
d. All of the above.