Multiple Choice
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.
Correct Answer:

Verified
Correct Answer:
Verified
Q17: In the catch block below, what is
Q18: Which of the following statements is true?<br>A)
Q19: All exception classes inherit, either directly or
Q20: Which of the following errors is synchronous?<br>A)
Q21: To catch an exception, the code that
Q22: Which of the following is true?<br>A) A
Q23: In Java, after an exception is handled,
Q24: When an exception occurs it is said
Q26: Which of the following statements is true?<br>A)
Q27: Which of the following statements regarding the