Q. Which functional interface represents a function that returns a value of type T and takes no arguments?
β
Correct Answer: (A)
Supplier<T>
Explanation: Supplier provides results of type T without input.