1Z1-816 무료 덤프문제 온라인 액세스
| 시험코드: | 1Z1-816 |
| 시험이름: | Java SE 11 Programmer II |
| 인증사: | Oracle |
| 무료 덤프 문항수: | 80 |
| 업로드 날짜: | 2026-08-26 |
Given an application with a main module that has this module-info.java file:
Which two are true? (Choose two.)
A bookstore's sales are represented by a list of Sale objects populated with the name of the customer and the books they purchased.
public class Sale {
private String customer;
private List<Book> items;
// constructor, setters and getters not shown
}
public class Book {
private String name;
private double price;
// constructor, setters and getters not shown
}
Given a list of Sale objects, tList, which code fragment creates a list of total sales for each customer in ascending order?
Given the Person class with age and name along with getter and setter methods, and this code fragment:
What will be the result?
