1z0-830 試験問題を無料オンラインアクセス

試験コード:1z0-830
試験名称:Java SE 21 Developer Professional
認定資格:Oracle
無料問題数:85
更新日:2026-09-02
評価
100%

問題 1

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?

問題 2

Which of the following statements oflocal variables declared with varareinvalid?(Choose 4)

問題 3

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?

問題 4

Which of the following statements is correct about a final class?

問題 5

Given:
java
List<String> abc = List.of("a", "b", "c");
abc.stream()
.forEach(x -> {
x = x.toUpperCase();
});
abc.stream()
.forEach(System.out::print);
What is the output?

コメントを追加

あなたのメールアドレスが公開されることはありません。個人情報に関する内容は隠されます *

insert code
画面にある文字を入力してください。