Which of the following are correct related to Garbage Collection. Select all correct answers.
a. It is posible for a program to free memory at a given time.
b. Garbage Collection feature of
Java ensures that the program never runs out of memory.
c. It is possible for a program to make an object available for Garbage Collection.
d. The fialize method of an object is invoked before garbage collection is performed on the object.
The answer given is b,c. But I choose b, c and d. B'case if the finalize method exist then it will be invoked right???
help me pls.