Quiz on Lambda Expressions
Evaluate yourself on what you have learned about Func, Action, and lambda expressions.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
Which of the following is the correct declaration for this method: public bool IsHorror(Movie movie)
?
A.
Func<Movie, bool>
B.
Action<Movie, bool>
C.
Func<bool, Movie>
D.
Action<bool, Movie>
1 / 3