3)Assume that th is an instance holding a thread object. th.start() causes the thread to start running and eventually complete its execution. The object reference by th is not accessable any more and is garbage collected when the garbage collecter runs. a)True b)False Why is the ans False ??
A Thread is an object like any other Java object, i.e. the thread can be manipulated even though it has died. The following code shows that even if the thread has died, its reference is still usable.