Using Reference Counting Garbage Collection. Identify which line, if any, will cause the reclamation of the object C.
1. Reference x= new Object(C);
2. Reference y=x;
3. Reference z = new Object(B);
4. y = x;
5. z = x;
1
2
3
4
5
Object C is not reclaimed yet.