Oracle Java SE 11 Developer - 1z1-819 Exam Practice Test

Given:

What is the result?
Correct Answer: C Vote an answer
Analyze the code:

Which two options can you insert inside println method to produce Global:namescope? (Choose two.)
Correct Answer: A,C Vote an answer
var numbers = List.of(0,1,2,3,4,5,6,7,8,9);
You want to calculate the average of numbers. Which two codes will accomplish this? (Choose two.)
Correct Answer: A,B Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Given:

What is the result?
Correct Answer: D Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
You replace the code on line 1 to use ParallelStream.

Which one is correct?
Correct Answer: D Vote an answer
Given the Customer table structure:
* ID Number Primary Key
* NAME Text Nullable
Given code fragment:

Which statement inserted on line 14 sets NAME column to a NULL value?
Correct Answer: C Vote an answer
Given:

Which two independent changes will make the Main class compile? (Choose two.)
Correct Answer: C,E Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Given the code fragment:

What is the result?
Correct Answer: C Vote an answer
Given:

What is the result?
Correct Answer: A Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Given the code fragment:

What is the result?
Correct Answer: E Vote an answer
Given:

What must be added in line 1 to compile this class?
Correct Answer: E Vote an answer
Given:

What is the result?
Correct Answer: A Vote an answer
Assuming the user credentials are correct, which expression will create a Connection?
Correct Answer: B Vote an answer
Given:
var fruits = List.of("apple", "orange", "banana", "lemon");
You want to examine the first element that contains the character n. Which statement will accomplish this?
Correct Answer: A Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).