1Z0-829 Java 17 Lambdas and Method References Guide
April 13, 2026
Study 1Z0-829 Java 17 Lambdas and Method References: key concepts, common traps, and exam decision cues.
On this page
Functional-programming questions usually become simple when you ask one thing first: what exact target type is this lambda or method reference trying to satisfy?
Lambda-choice map
If the stem is mainly about…
Better first instinct
lambda legality
confirm the target is a functional interface
parameter and return compatibility
trace the abstract method signature exactly
method reference
test the reference against the target signature, not against visual similarity
What the exam is really testing
If the code shows…
Strong reading
one abstract method plus defaults
functional-interface legality is the point
method reference shorthand
signature compatibility is under test
captured local state
effective-final scope rules may matter
Common traps
Trap
Better rule
thinking any interface works as a lambda target
there must be exactly one abstract method
assuming a method reference is valid because the name looks close
the full signature still matters
forgetting local captures must be effectively final