What is the output of this for loop?
for(int i = 0; i < 100; i += 2)
System.out.println(i);
1) The even numbers from 0 to 98, inclusive
2) The even numbers from 0 to 100, inclusive
3) All of the numbers from 0 to 100
4) The odd numbers from 0 to 98, inclusive