Page 1 of 1

About Question enthuware.ocpjp.v8.2.1884 :

Posted: Mon Oct 26, 2015 11:12 am
by in2xes

1. IntStream.range returns a sequential ordered IntStream from startInclusive (inclusive) to endExclusive (exclusive) by an incremental step of 1. Therefore, is1 contains 1, 2.

2. IntStream.range returns a sequential ordered IntStream from startInclusive (inclusive) to endInclusive (inclusive) by an incremental step of 1. Therefore, is2 contains 1, 2, 3.
typo-

2. IntStream.rangeClosed

Re: About Question enthuware.ocpjp.v8.2.1884 :

Posted: Tue Oct 27, 2015 12:54 am
by admin
Fixed.
thank you for your feedback!