(Choose 1 answer)
1. String s = "aaa";
When does the string created on line 2 become eligible for garbage collection?
2. String t = new String(s);
3. t += "zzz":
4. t = t.substring(0);
5. t = null;
A. After line 3
B. After line 4
C. After line 5
D. The string created on line 2 does not become eligible for garbage collection in this code.
Finish
E 40