What happens if no catch handler matches the type of the thrown object?
a) The program terminates.
b) The catch block with the most general Exception type is executed.
c) The program continues normally.
d) The catch block with the most specific Exception type is executed.