Which two statements are correct about try blocks? (Choose two.) By Singh | January 7, 2023 0 Comment Which two statements are correct about try blocks? (Choose two.) A. A try block can have more than one catch block. B. A try block must have a catch block and a finally block. C. A finally block in a try-with-resources statement executes before the resources declared are closed. D. catch blocks must be ordered from generic to specific exception types. E. A finally block must be immediately placed after the try or catch blocks. Correct Answer: A,E