Java SE 17 Developer Free Practice Exam Questions

8 real Java SE 17 Developer exam questions with answers and AI explanations. Oracle certification prep — page 1 of 1.

  1. Question 6: Assume you have an automatic module from the module path display-ascii-0.2.jar. Which name is given to the automatic module based on the given JAR file?
  2. Question 7: Which statement is true about migration?
  3. Question 17: Which statement is true?
  4. Question 27: Which statement is true?
  5. Question 36: Which statement is true about modules?
  6. Question 40: Given the code fragment: List<Integer> listOfNumbers = List.of(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); Which code fragment returns different values?
  7. Question 53: Given the code fragment: LocalDate now = LocalDate.now(); LocalDate this_labourDay = LocalDate.of(2021, Month.MAY, 1); LocalDate next_labourDay = this_labourDa…
  8. Question 54: Given: Path p1 = Path.of("/home"); Path p2 = Path.of("../data"); System.out.println(p1.resolve(p2)); System.out.println(p2.resolve(p1)); What is the result?