1z1-830 Exam Question 21

Which of the following can be the body of a lambda expression?
  • 1z1-830 Exam Question 22

    Given:
    java
    package com.vv;
    import java.time.LocalDate;
    public class FetchService {
    public static void main(String[] args) throws Exception {
    FetchService service = new FetchService();
    String ack = service.fetch();
    LocalDate date = service.fetch();
    System.out.println(ack + " the " + date.toString());
    }
    public String fetch() {
    return "ok";
    }
    public LocalDate fetch() {
    return LocalDate.now();
    }
    }
    What will be the output?
  • 1z1-830 Exam Question 23

    You are working on a module named perfumery.shop that depends on another module named perfumery.
    provider.
    The perfumery.shop module should also make its package perfumery.shop.eaudeparfum available to other modules.
    Which of the following is the correct file to declare the perfumery.shop module?
  • 1z1-830 Exam Question 24

    Given:
    java
    Object input = 42;
    String result = switch (input) {
    case String s -> "It's a string with value: " + s;
    case Double d -> "It's a double with value: " + d;
    case Integer i -> "It's an integer with value: " + i;
    };
    System.out.println(result);
    What is printed?
  • 1z1-830 Exam Question 25

    Given:
    java
    var deque = new ArrayDeque<>();
    deque.add(1);
    deque.add(2);
    deque.add(3);
    deque.add(4);
    deque.add(5);
    System.out.print(deque.peek() + " ");
    System.out.print(deque.poll() + " ");
    System.out.print(deque.pop() + " ");
    System.out.print(deque.element() + " ");
    What is printed?