Q. In lambda expression `(a, b) -> a + b`, what is required of 'a' and 'b'?
β
Correct Answer: (D)
Both must be parameters of the same functional interface method
Explanation: The parameters must match the functional interface method signature.