1z1-830 Exam Question 16

Given:
java
List<Integer> integers = List.of(0, 1, 2);
integers.stream()
.peek(System.out::print)
.limit(2)
.forEach(i -> {});
What is the output of the given code fragment?
  • 1z1-830 Exam Question 17

    Which methods compile?
  • 1z1-830 Exam Question 18

    Consider the following methods to load an implementation of MyService using ServiceLoader. Which of the methods are correct? (Choose all that apply)
  • 1z1-830 Exam Question 19

    Given:
    java
    Period p = Period.between(
    LocalDate.of(2023, Month.MAY, 4),
    LocalDate.of(2024, Month.MAY, 4));
    System.out.println(p);
    Duration d = Duration.between(
    LocalDate.of(2023, Month.MAY, 4),
    LocalDate.of(2024, Month.MAY, 4));
    System.out.println(d);
    What is the output?
  • 1z1-830 Exam Question 20

    Given:
    java
    StringBuffer us = new StringBuffer("US");
    StringBuffer uk = new StringBuffer("UK");
    Stream<StringBuffer> stream = Stream.of(us, uk);
    String output = stream.collect(Collectors.joining("-", "=", ""));
    System.out.println(output);
    What is the given code fragment's output?