Multiple Choice
Which of the following statements is false?
A) SecureRandom method ints with two int arguments creates an IntStream for an infinite stream of random int values in the range starting with the first argument and up to, but not including, the second.
B) SecureRandom method ints with a long and two int arguments creates an IntStream with the specified number of random int values in the range starting with the first argument and up to, but not including, the second.
C) To convert an IntStream to a Stream<Integer> call IntStream method toStream.
D) Function static method identity creates a Function that simply returns its argument.
Correct Answer:

Verified
Correct Answer:
Verified
Q51: You can declare that an interface is
Q52: The basic generic functional interface _ in
Q53: Functional interface Comparator's default method _ reverses
Q54: The basic generic functional interface _ in
Q55: Collectors static method groupingBy with one argument
Q57: Stream method _ eliminates duplicate objects in
Q58: Which of the following statements is false?<br>A)
Q59: The type of a lambda is the
Q60: The intermediate Stream operation _ results in
Q61: Which of the following statements is false?<br>A)