Which statement is true about multiple catch blocks?
b) Multiple catch blocks can be executed for a single try block.
c) Catch blocks must handle the same exception type.
d) Catch blocks are optional.
a) Only one catch block can be executed per try block.