Multiple Choice
Which of the following statements about Try blocks is true?
A) The Try block must be followed by at least one Catch block.
B) The Try block must be followed by a Finally block.
C) The Try block should contain statements that may process an exception.
D) The Try block should contain statements that may throw an exception.
Correct Answer:

Verified
Correct Answer:
Verified
Q37: It is possible to nest a Try/Catch
Q38: Resource de-allocation should be done explicitly in
Q39: There must be a Catch clause for
Q40: Which of the following statements is true?<br>A)The
Q41: The process that attempts to locate an
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
Q47: Which of the following statements is true?<br>A)The