0 votes
in JAVA by

Which interface is used to represent a function that takes two arguments and returns a result in Java?

a) BiFunction

b) BinaryOperator

c) UnaryOperator

d) Consumer

1 Answer

0 votes
by
Answer: a) BiFunction

Explanation: The BiFunction interface is used to represent a function that takes two arguments and returns a result in Java.
...