1. Mark what new material is covered (Y) and what is not covered (N) in the chapter that you were supposed to read for this week:
2. What will be printed as a result of the following code? Explain your answer by tracing step-by-step:
int[] a = {1, 2};
int[] b = a;
b[0]++;
System.out.println(a[0]);