1.

When is the object, created in line 3, eligible for garbage collection?

Answer» Option A is wrong. This simply copies the object reference into the array. Option B is wrong. The reference o is set to null, but, oa[0] still maintains the reference to the Float object. Option C is correct. The thread of execution will then not have access to the object.


Discussion

No Comment Found