Question 26
Given:
var data = new ArrayList<>();
data.add("Peter");
data.add(30);
data.add("Market Road");
data.set(1, 25);
data.remove(2);
data.set(3, 1000L);
System.out.print(data);
What is the output?
Question 27
Given:
Which three classes successfully override printOne()? (Choose three.)

Question 28
Given:
Which two methods modify field values? (Choose two.)
Question 29
Given:
What is the result?
Question 30
Given:
What is the result?



