What will the following for loop do?
for (int i = 0; i < 10; i = i + 2) { System.out.println(i); }
Remember the condition will be checked once before the loop starts and then once after every iteration!