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

What is the result?
Given:

What is the result?
Given the code fragment:
1. ArrayList<Integer> list = new ArrayList<>(1);
2. list.add(1001);
3. list.add(1002);
4. System.out.println(list.get(list.size()));
What is the result?
Given the code fragment:

What is the result?
Given:

What is the result?
Given:

What is the result?

Given the code fragment:

What is the result?
Given:

What is the result?
Given the content of three files:

Which statement is true?
Given the following code:

What are the values of each element in intArr after this code has executed?
Given:
public class Natural {
private int i;
void disp() {
while (i <= 5) {
for (int i = 1; i <= 5; ) {
System.out.print(i + " ");
i++;
}
i++;
}
}
public static void main (String args[]) {
new Natural().disp();
}
}