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; 0 1 O 2 کیا 4 0 5 O Object C is not reclaimed yet.