Which of the following statements about a finally block is true?
C.
A finally block can throw an exception, in which case not every line of the finally block would be executed.
Options A and D are incorrect.
Option B is incorrect.
The finally block is called regardless of whether or not the related catch block is executed. Option C is the correct answer.
A finally statement requires brackets {}.