How does a try statement determine which catch clause should be used to handle an exception?
Javasearch.buggybread.com

Search Interview Questions


 More than 3000 questions in repository.
 There are more than 900 unanswered questions.
Click here and help us by providing the answer.
 Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company      Label / Company / Text

   



Interview Questions and Answers

 Q1. How does a try statement determine which catch clause should be used to handle an exception?Core Java
Ans. When an exception is thrown within the body of a try statement, the catch clauses of the try statement are examined in the order in which they appear. The first catch clause that is capable of handling the exception is executed. The remaining catch clauses are ignored.

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     java   exceptions   exception handling   try   catch      basic        frequent


Related Questions

  Will this code give error if i try to add two heterogeneous elements in the arraylist. ? and Why ?
  If I try to add Enum constants to a TreeSet, What sorting order will it use ?
  Explain throw, throws , try and catch in Java ?
  Is it necessary that each try block to be followed by catch block ?
  Can we have try and catch blocks within finally ?
  If we try to add duplicate key to the HashMap, What will happen ?
  Which of the following exception is thrown when we try to access element which is beyond the size ?
 Why doesn't this code give compile time error when we are clearly trying to add an integer element to an array of Strings

Object[] strArray = new String[2];
strArray[0] = 5;
 Why cannot we initialize a final field within the constructor if the initialization is within try block ?



Help us and Others Improve. Please let us know the questions asked in any of your previous interview.

Any input from you will be highly appreciated and It will unlock the application for 10 more requests.

Company Name:
Questions Asked: