32.
Which of these is not a correct statement?

38.
When Overloading does not occur?

39.
What will be the output of the following Java program?
class area 
{
    int width;
    int length;
    int volume;
    area() 
    {
       width=5;
       length=6;
    }
    void volume() 
    {
         volume = width*length*height;
    } 
}    
class cons_method 
{
    public static void main(String args[])
    {
        area obj = new area();
        obj.volume();
        System.out.println(obj.volume);        
    } 
}

40.
What happens to the thread when garbage collection kicks off?

Read More Section(Constructors and Methods)

Each Section contains maximum 100 MCQs question on Constructors and Methods. To get more questions visit other sections.