Q. Which functional interface matches with `String::new` when used with a Supplier?
β
Correct Answer: (A)
Supplier<String>
Explanation: `Supplier<String>` matches a constructor reference that takes no arguments.