0 votes
in JAVA by

Which of the following is a keyword used to define a lambda expression in Java?

a) function

b) lambda

c) -> (arrow)

d) function() (parentheses)

1 Answer

0 votes
by
Answer: c) -> (arrow)

Explanation: The “->” (arrow) operator is used to define a lambda expression in Java.
...