What is the difference between a function and a lambda expression in Kotlin?
A. A function is a named block of code, a lambda is anonymous
B. A function can take arguments, a lambda cannot
C. A function returns a value using return, a lambda returns the last expression
D. A function can be called using its name, a lambda must be passed as a parameter
Answer: Option A

Join The Discussion