Q. What functional interface would you use with `String::length` in a stream mapping?
β
Correct Answer: (A)
Function<String, Integer>
Explanation: `Function<String, Integer>` matches input String and returns Integer length.