Lambda and Functional Interfaces Flashcards
1
Q
Supplier<T> is a functional interface in Java 17.</T>
A
True
2
Q
The return type of the get() method in Supplier<T> is always void.</T>
A
False – The return type is T, representing a value of any type.
3
Q
The get() method in Supplier<T> requires exactly one parameter.</T>
A
False – The get() method takes zero parameters.
4
Q
Supplier<T> can be used to supply values on demand.</T>
A
True
5
Q
Supplier<T> was introduced in Java 17.</T>
A
False – Supplier<T> was introduced in Java 8.</T>