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 is 10%4? Give a numerical value.
3. What will be printed as the result of the following piece of code? explain step-by-step:
int first = 3; int second = first; first = second - 1; System.out.println(first); System.out.println(second);