Solved

Which of the Following Statements About the Finally Clause in a Try

Question 82

Multiple Choice

Which of the following statements about the finally clause in a try block is NOT true?


A) The finally clause will be executed after the last statement of the try block completes without exception.
B) The finally clause will be executed after the last statement of a catch clause completes if this try block catches an exception.
C) If no exception occurs, the finally clause will not be executed.
D) The finally clause will be executed when an exception is thrown in the try block but not caught.

Correct Answer:

verifed

Verified

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

Related Questions