Solved

What's the Difference Between a Try Block and a Try

Question 55

Multiple Choice

What's 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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions