What does the code print

Report a typo

What does this code print?

boolean result = IntStream
        .iterate(0, n -> n + 1)
        .limit(100)
        .filter(n -> n % 2 != 0)
        .noneMatch(n -> n % 2 == 0);

System.out.println(result);
Select one option from the list
___

Create a free account to access the full topic