Question: Consider the following code ` ` ` public class MyClass { public static void main ( String args [ ] ) { mystery ( 3

Consider the following code
```
public class MyClass {
public static void main(String args[]){
mystery(3,4);
}
public static void mystery(int x, int y) throws Exception {
try {
int z = x / y;
} catch (ArithmeticException e){
throw new Exception(e.getMessage());
}
}
}
```
which line has a compile error?
line 5
There are no compile errors.
line 7
line 3
Consider the following code ` ` ` public class

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!