193.
Can multiple catch blocks be executed for a single try statement? In other words if a body of a catch block is executed can code inside another catch block also be executed
View Description
Once the proper catch block processed, control is transferred to the finally block (if there are any).