adplus-dvertising
frame-decoration

Question

Where will be the most chance of the garbage collector being invoked?
class HappyGarbage01 
{ 
    public static void main(String args[]) 
    {
        HappyGarbage01 h = new HappyGarbage01(); 
        h.methodA(); /* Line 6 */
    } 
    Object methodA() 
    {
        Object obj1 = new Object(); 
        Object [] obj2 = new Object[1]; 
        obj2[0] = obj1; 
        obj1 = null; 
        return obj2[0]; 
    } 
}

a.

After line 9

b.

After line 10

c.

After line 11

d.

Garbage collector never invoked in methodA()

Posted under Java Programming

Answer: (d).Garbage collector never invoked in methodA()

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Where will be the most chance of the garbage collector being invoked?

Similar Questions

Discover Related MCQs

Q. Which statement is true?

Q. Which statement is true?

Q. Which statement is true?

Q. Which statement is true?

Q. A class which is declared with the ________ keyword is known as an abstract class in Java.

Q. Abstract class can have constructors and static methods?

Q. What is the syntax of abstract class in java?

Q. A method which is declared as abstract and does not have implementation is known as an _____________?

Q. An abstract class can have a data member, abstract method, method body (non-abstract method), constructor, and even main() method.

Q. Java is a ___ programming language.

Q. In Java programming language, the code is placed inside ___.

Q. Properties are implemented using ___ in Java.

Q. A Class in Java is like a ____.

Q. Which is the file extension used for a public Java class source code?

Q. Which is the file extension used for a compiled Java class file?

Q. State TRUEor FALSE.
The source-code of An Abstract-Class or Interface is kept inside a .java file.

Q. After compilation, an Interface or Abstract-Class is kept in a ___ file in Java programming.

Q. State TRUE or FALSE. In Java, a public class or abstract-class or interface must be kept in a separate .java file.

Q. In a .java file, how many numbers of public types namely class, interface or abstract can be managed?

Q. In Java, the keyword used to declare a class is ___.