Multiple Choice
Which statement in the following sequence of statements about sorting objects by two fields is false?
A) To sort objects by two fields, you create a Comparator that uses two Functions.
B) First you call Comparator method comparing to create a Comparator with the first Function.
C) On the Comparator for the first field, you call method comparing with the second Function.
D) The resulting Comparator compares objects using the first Function then, for objects that are equal, compares them by the second Function.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Intermediate operations are_; they aren't performed until
Q2: Which of the following statements is false?<br>A)
Q4: Collectors static method _ returns a Collector
Q5: Terminal operations are _; they perform
Q6: Stream method findFirst is a short-circuiting terminal
Q7: Stream mutable reduction operation _creates an array
Q8: By default, method sorted uses _.<br>A) ascending
Q9: Map method _ performs an operation on
Q10: Which of the following statements is false?<br>A)
Q11: Collectors static method groupingBy with two arguments