Lambda and Functional Interfaces Flashcards

1
Q

Supplier<T> is a functional interface in Java 17.</T>

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The get() method in Supplier<T> requires exactly one parameter.</T>

A

False – The get() method takes zero parameters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Supplier<T> can be used to supply values on demand.</T>

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Supplier<T> was introduced in Java 17.</T>

A

False – Supplier<T> was introduced in Java 8.</T>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly