0 votes
in JAVA by
Which of the following interfaces is not a subtype of the Function interface in Java 8?

a) UnaryOperator

b) BiFunction

c) Supplier

d) Predicate

1 Answer

0 votes
by

Answer: c) Supplier.

Explanation: The Supplier interface is not a subtype of the Function interface, but it is a functional interface that represents a supplier of results.

...