How does a try statement determine which catch clause should be used to handle an exception?
Correct Answer: When an exception is thrown , the catch block of the try statement are examined in the order in which they appear The first catch block that is capable of handling the exception is executed The remaining catch blocks are ignored