Which statement is true ?
Calling Runtime.gc( ) will cause eligible objects to be garbage collected.
Calling System.gc( ) will cause the JVM to make the best effort to reclaim space from objects eligible for garbage collection
If an object can be accessed from a live thread, then it cannot be garbage collected.
If object 1 refers to object 2, then object 2 cannot be garbage collected.
Performance aside, numerous explicit calls to the garbage collector will always prevent the OutOfMemoryException exception.