Solved

Which of the Following Statements About the Try/finally Statement Is

Question 81

Multiple Choice

Which of the following statements about the try/finally statement is NOT true?


A) The finally clause is executed if the body of the try completes without exception.
B) The finally clause is executed if the body of the try throws exception.
C) The finally clause is executed after the exception is propagated to its handler.
D) The finally clause typically represents cleanup code that is to be executed whether or not an exception occurs.

Correct Answer:

verifed

Verified

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

Related Questions