1Z0-819 Exam Question 1
Given:

Which two are correct? (Choose two.)

Which two are correct? (Choose two.)
1Z0-819 Exam Question 2
Given the code fragment:

What change on line 1 will make this code compile?

What change on line 1 will make this code compile?
1Z0-819 Exam Question 3
Given:

Which is true?

Which is true?
1Z0-819 Exam Question 4
Given the code fragment:

Which two statement inserted independently at line 1 enable this code to print PRRT?

Which two statement inserted independently at line 1 enable this code to print PRRT?
1Z0-819 Exam Question 5
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?
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?