Question 119 of 130 from exam 1Z0-809: Java SE 8 Programmer II

Question 119 of 130 from exam 1Z0-809: Java SE 8 Programmer II

Question

Given the code fragment:

List<String> nums = Arrays.asList("EE", “SE");
String ans = nums
-parallelstream()

-reduce("Java ", (a, b) -> a.concat(b));
System. out print (ans);

What is the result?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

D.