1z1-808 Exam Question 11
Given: What is the result?


1z1-808 Exam Question 12
Given the code fragment: List colors = new ArrayList(); colors.add("green");
colors.add("red");
colors.add("blue");
colors.add("yellow");
colors.remove(2);
colors.add(3,"cyan");
System.out.print(colors);
What is the result?
colors.add("red");
colors.add("blue");
colors.add("yellow");
colors.remove(2);
colors.add(3,"cyan");
System.out.print(colors);
What is the result?
1z1-808 Exam Question 13
Given the code fragment:

What is the result?

What is the result?
1z1-808 Exam Question 14
Given:

What is the result?

What is the result?
1z1-808 Exam Question 15
Given the code fragment:

What is the result?

What is the result?

