Multiple catch blocks cannot be executed for a single try statement
A
Correct answer
Explanation
True is correct because when an exception is thrown in a try block, only the first matching catch block will execute. Once a catch block handles the exception, control passes to that block and subsequent catch blocks are skipped. This is why catch blocks must be ordered from most specific to most general exception types to ensure the correct handler is chosen.