Free Oracle 1Z1-803 Exam Dumps Questions & Answers
| Exam Code/Number: | 1Z1-803Join the discussion |
| Exam Name: | Java SE 7 Programmer I |
| Certification: | Oracle |
| Free Question Number: | 216 |
| Publish Date: | Aug 12, 2026 |
| # of views: | 2909 |
|
|
|
Given:
public class Test { public static void main(String[] args) { int ax = 10, az = 30; int aw = 1, ay = 1; try { aw = ax % 2; ay = az / aw; } catch (ArithmeticException e1) { System.out.println("Invalid Divisor"); } catch (Exception e2) { aw = 1; System.out.println("Divisor Changed"); } ay = az /aw; // Line 14 System.out.println("Succesful Division " + ay);
}
}
What is the result?

