1z0-830 試験問題を無料オンラインアクセス
| 試験コード: | 1z0-830 |
| 試験名称: | Java SE 21 Developer Professional |
| 認定資格: | Oracle |
| 無料問題数: | 85 |
| 更新日: | 2026-09-02 |
Given:
java
Integer frenchRevolution = 1789;
Object o1 = new String("1789");
Object o2 = frenchRevolution;
frenchRevolution = null;
Object o3 = o2.toString();
System.out.println(o1.equals(o3));
What is printed?
Given:
java
List<Long> cannesFestivalfeatureFilms = LongStream.range(1, 1945)
.boxed()
.toList();
try (var executor = Executors.newVirtualThreadPerTaskExecutor()) {
cannesFestivalfeatureFilms.stream()
.limit(25)
.forEach(film -> executor.submit(() -> {
System.out.println(film);
}));
}
What is printed?