Multiple Choice
The basic generic functional interface ________ in package java.util.function contains method apply that takes two T arguments, performs an operation on them (such as a calculation) and returns a value of type T.
A) Consumer<T>
B) Function<T,R>
C) Supplier<T>
D) BinaryOperator<T>
Correct Answer:

Verified
Correct Answer:
Verified
Q57: Stream method _ eliminates duplicate objects in
Q58: Which of the following statements is false?<br>A)
Q59: The type of a lambda is the
Q60: The intermediate Stream operation _ results in
Q61: Which of the following statements is false?<br>A)
Q62: Class IntStream provides terminal operations for common
Q63: A nice performance feature of lazy evaluation
Q64: Terminal Stream operation _ performs processing on
Q65: Which of the following statements is true?<br>A)
Q67: Functional interface BiConsumer's accept method has two