Which statement is true about exception handling?
At least one catch block must accompany a try statement.
All statements in a try block are executed, even if an exception occurs in the middle of the try block.
At least one statement in a try block must throw an exception.
All catch blocks must be ordered from general to most specific.
Submit