What is a lambda? Give a concrete example.
True or false?: a lambda must return a value.
If you take away the special syntax, what is a lambda under the hood?
What is the stream API? What problem does it solve?
Which types have stream methods?
If I’m using a type that doesn’t have stream methods, how do I make stream methods available?
Name the major stream operations (not methods, just conceptual things you can do with streams).
What type is returned by a stream’s .filter(predicate)?
How do I grab one item instead of a Stream? Is there more than one way?
Are streams greedy or lazy? What does that even mean?
What is a terminal operation?