1z0-808 문제 26

코드 조각을 보면 다음과 같습니다.

결과는 무엇입니까?

1z0-808 문제 27

Given the content of three files:

Which statement is true?

1z0-808 문제 28

코드 조각을 보면 다음과 같습니다.

코드가 성공적으로 컴파일되도록 하려면 어떤 두 가지 수정을 해야 합니까?

1z0-808 문제 29

Given:
public class Test {
public static void main(String[] args) {
try {
String[] arr =new String[4];
arr[1] = "Unix";
arr[2] = "Linux";
arr[3] = "Solarios";
for (String var : arr) {
System.out.print(var + " ");
}
} catch(Exception e) {
System.out.print (e.getClass());
}
}
}
What is the result?

1z0-808 문제 30

Given:

What is the result?