Java SE 8 Programmer 1Z0–808 Practice Full Test 1
© examsiri.com
Question : 70 of 84
Marks:
+1,
-0
public static void main(String[] args) {
ArrayList points = new ArrayList<>();
points.add(1);
points.add(2);
points.add(3);
points.add(4);
points.add(null);
points.remove(2);
points.remove(null);
System.out.println(points);
} What is the result?
Go to Question: