InterviewSolution
Saved Bookmarks
| 1. |
What is the return type of lambda expression?(a) String(b) Object(c) void(d) Function |
|
Answer» Correct answer is (d) Function To explain: Lambda expression enables us to pass functionality as an argument to another method, such as what action should be taken when someone clicks a button. |
|