Given the code fragment:
List 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?
listVal.stream().filter(x -> x.length()>3).count()
listVal.stream().map(x -> x.length()>3).count()
listVal.stream().peek(x -> x.length()>3).count().get()
listVal.stream().filter(x -> x.length()>3).mapToInt(x -> x).count()
Submit