Question: name = name;What is the stack trace printed out when the following code is run? public class | Fruits { public static void findFruit (

name = name;What is the stack trace printed out when the following code is run?
public class| Fruits {
public static void findFruit(String fruit) throws Exception {
if ( fruit.equals("apple"))
throw new Exception();
else
throw new NullPointerException();
}
public static void main(String[] args){
try {
findFruit("pear");
} catch (NullPointerException e){
e.printStackTrace();
} catch (Exception e){
e.printStackTrace();
}
}
}
name = name;What is the stack trace printed out

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!