Online Access Free 1Z1-803 Practice Test
Exam Code: | 1Z1-803 |
Exam Name: | Java SE 7 Programmer I |
Certification Provider: | Oracle |
Free Question Number: | 216 |
Posted: | Aug 30, 2025 |
Given the classes:
*AssertionError
*ArithmeticException
*ArrayIndexOutofBoundsException
*FileNotFoundException
*IllegalArgumentException
*IOError
*IOException
*NumberFormatException
*SQLException
Which option lists only those classes that belong to the unchecked exception category?
Given the code fragment:
float x = 22.00f % 3.00f;
int y = 22 % 3;
System.out.print(x + ", "+ y);
What is the result?
Given the code in a file Traveler.java:
And the commands:
Javac Traveler.java
Java Traveler Java Duke
What is the result?