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
Q26: _ is a method reference for an
Q29: Stream mutable reduction operation _ creates a
Q33: _ is a constructor reference. It creates
Q40: IntStream method _ performs the count, min,
Q46: The type of a lambda is the
Q47: You can declare that an interface is
Q53: Functional interface Comparator's default method _ reverses
Q53: The basic generic functional interface _ in
Q54: Which of the following statements is false?<br>A)Prior
Q55: The basic generic functional interface _ in