Q. Which functional interface is used to represent a function that takes one argument and returns a result?
β
Correct Answer: (C)
Function
Explanation: Function<T, R> takes one argument of type T and returns a result of type R.