Long ranges

Report a typo

What does this code print?

boolean result = !IntStream
        .generate(() -> 100)
        .limit(101)
        .allMatch(val -> val >= 100);

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

Create a free account to access the full topic