Java - Memory Management Basics
Identify the problem in this Java code related to garbage collection:
public class FinalizeTest {
public static void main(String[] args) {
Object obj = new Object();
obj.finalize();
}
}