Which of the following statements is false?

a. Functional interfaces are also known as single abstract method (SAM) interfaces.
b. Package java.util.function contains six basic functional interfaces BinaryOperator, Consumer, Function, Predicate, Supplier and UnaryOperator.
c. There are many specialized versions of the six basic functional interfaces for use with int, long and double primitive values. There are also generic customizations of Consumer, Function and Predicate for binary operations—that is, methods that take two arguments.
d. All of these statements are true.

d. All of these statements are true.

Computer Science & Information Technology

You might also like to view...

What is wrong with the following recursive function? It should print out the array backwards.

void print(int array[], int start, int size) { if(start < size) return; else { print(array, start+1,size); cout << array[start] << endl; } } a. infinite recursion b. the stopping condition is wrong c. the recursive call is wrong d. nothing

Computer Science & Information Technology

In presentation software, you can use a(n) ____ to add movement to an object or text.?

A. ?transition B. ?animation C. ?operator D. ?vector

Computer Science & Information Technology