1. Mark what is covered (Y) and what is not covered (N) in the part of Chapter 2 that you were supposed to read:
2. What will be printed as the result of the following piece of code? explain step-by-step:
int a = 2; int b = ++a; System.out.println(a); System.out.println(b); b = a++; System.out.println(a); System.out.println(b); b -= 3; System.out.println(b); System.out.println(a + b); System.out.println(a + ", " + b);