Practice modeFree teaserOracle · Oracle Certified Professional: Java SE 17 Developer (1Z0-829) — Practice Exam 2
0/10 answered
Question 1 of 10Working with Streams and Lambda ExpressionsSelect ONE answer
What is printed? long c = java.util.stream.Stream.of("a", "bb", "ccc") .filter(s -> s.length() > 1) .count(); System.out.println(c);
Pick an option to reveal the answer.
