Question 91
Given:

Which two lines inserted in line 1 will allow this code to compile? (Choose two.)

Which two lines inserted in line 1 will allow this code to compile? (Choose two.)
Question 92
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?
Question 93
Given
:

What is the correct definition of the JsonField annotation that makes the Point class compile?
A)

B)

C)

:

What is the correct definition of the JsonField annotation that makes the Point class compile?
A)

B)

C)

Question 94
Given:

What is the output?

What is the output?
Question 95
Given:

What is the result?

What is the result?