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

試験コード:1Z0-815
試験名称:Java SE 11 Programmer I
認定資格:Oracle
無料問題数:125
更新日:2026-09-18
評価
100%

問題 1

What should keyword1 and keyword2 be respectively, in oreder to produce output 2345?
int [] array = {1,2,3,4,5};
for (int i: array) {
if ( i < 2) {
keyword1 ;
}
System.out.println(i);
if ( i == 3) {
keyword2 ;
}}

問題 2

Given:

Which three are true? (Choose three.)

問題 3

Given:
public class ScopeTest {
int j, int k;
public static void main(String[] args) {
ew ScopeTest().doStuff(); }
void doStuff() {
nt x = 5;
oStuff2();
System.out.println("x");
}
void doStuff2() {
nt y = 7;
ystem.out.println("y");
or (int z = 0; z < 5; z++) {
ystem.out.println("z");
ystem.out.println("y");
}
Which two items are fields?

問題 4

Given:

What is the result?

問題 5

Given:

What is the result?

コメントを追加

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

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