Multiple Choice
Which of the following statements is true?
A) The code in a Finally block is executed only if an exception occurs.
B) The code in a Finally block is executed only if an exception does not occur.
C) The code in a Finally block is executed only if there are no Catch blocks.
D) None of the above are true.
Correct Answer:

Verified
Correct Answer:
Verified
Q42: Which of the following statements about Try
Q43: If an exception handler is to catch
Q44: After an exception is handled,control resumes .This
Q45: By convention,user-defined exception names should end with
Q46: If an exception is thrown in a
Q48: Using inheritance with exceptions enables a catch
Q49: What is the difference between a Try
Q50: User-defined exceptions should be derived from the:<br>A)Exception
Q51: Certain types of resources must be explicitly
Q52: The Finally block is executed only if