+2 votes
in JAVA by
Which of the following is the correct lambda expression, which adds two numbers and returns their sum?

None of the options

(int a, int b) -> a + b;

Both the options

(a, b) -> a + b
...