최신Oracle Java SE 8 Programmer I - 1z0-808무료샘플문제
문제1
Given the code fragment:

What is the result?
Given the code fragment:

What is the result?
정답: C
문제2
Given the code fragment:
public static void main(String[] args) {
int iArray[] = {65, 68, 69};
iArray[2] = iArray[0];
iArray[0] = iArray[1];
iArray[1] = iArray[2];
for (int element : iArray) {
System.out.print(element + " ");
}
Given the code fragment:
public static void main(String[] args) {
int iArray[] = {65, 68, 69};
iArray[2] = iArray[0];
iArray[0] = iArray[1];
iArray[1] = iArray[2];
for (int element : iArray) {
System.out.print(element + " ");
}
정답: B
문제3
Given the code fragment:

What is the result?
Given the code fragment:

What is the result?
정답: B
설명: (ExamPassdump 회원만 볼 수 있음)
문제4
Given the code fragment:

What is the result?
Given the code fragment:

What is the result?
정답: B
문제5
Which three statements describe the object-oriented features of the Java language?
Which three statements describe the object-oriented features of the Java language?
정답: A,C,F
설명: (ExamPassdump 회원만 볼 수 있음)
문제6
Given the code fragment:

Which two modifications enable the code to compile?
Given the code fragment:

Which two modifications enable the code to compile?
정답: B,E
문제7
Given the code fragment:

What is the result?
Given the code fragment:

What is the result?
정답: A
설명: (ExamPassdump 회원만 볼 수 있음)
문제8
Given:

What is the result?
Given:

What is the result?
정답: B
문제9
Which two code fragments cause compilation errors? (Choose two.)
Which two code fragments cause compilation errors? (Choose two.)
정답: B,D
문제10
Given:

Given:

정답: B
문제11
Given the code fragment:

Which two modifications, made independently, enable the code to compile?
Given the code fragment:

Which two modifications, made independently, enable the code to compile?
정답: C,E
설명: (ExamPassdump 회원만 볼 수 있음)