Q. What is the output type of this lambda: `(String s) -> s.length()`?
β
Correct Answer: (A)
int
Explanation: The lambda returns the length of the string, which is an integer.