Which of the following statements about try-catch blocks are correct? (Choose two.)
A, E.
A try block can have zero or more catch blocks, and zero or one finally blocks, but must be accompanied by at least one of these blocks.
Options B, D, and F are incorrect, and Option E is correct.
A finally block must appear after the last catch block, if there are any, making Option C incorrect, and Option A correct.