Here's a question I found on a
test referenced by jiris.com... called JavaQuestions Mock exam.
Question 65: Which statements about garbage collection are true?
Select all valid answers.
a. You can directly free the memory allocated by an object.
b. You can directly run the garbage collector whenever you want to.
c. The garbage collector informs your object when it is about to be garbage collected.
d. The garbage collector reclaims an object’s memory as soon as it becomes a candidate for garbage collection.
e. The garbage collector runs in low-memory situations.
I think the correct answer is 'e' only but the author indicates that its b,c,e.
Your thoughts will be greatly appreciated. Thanks in advance...