Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Java
medium
Java
stream pipelines
Single-choice MCQ
Which result do you get from this code?
List<Integer> r = Stream.of(1,2,3).map(i -> i*2).toList();