Which code fragment, when inserted at line n1, enables …

Given the code fragment:
List<String> listVal = Arrays.asList(“Joe”, “Paul”, “Alice”, “Tom”);
System.out.println (
// line n1
);
Which code fragment, when inserted at line n1, enables the code to print the count of string elements whose
length is greater than three?

Given the code fragment:
List<String> listVal = Arrays.asList(“Joe”, “Paul”, “Alice”, “Tom”);
System.out.println (
// line n1
);
Which code fragment, when inserted at line n1, enables the code to print the count of string elements whose
length is greater than three?

A.
listVal.stream().filter(x -> x.length()>3).count()

B.
listVal.stream().map(x -> x.length()>3).count()

C.
listVal.stream().peek(x -> x.length()>3).count().get()

D.
listVal.stream().filter(x -> x.length()>3).mapToInt(x -> x).count()



Leave a Reply 4

Your email address will not be published. Required fields are marked *