61.
Which of these is not a correct statement?

62.
What will be the output of the following Java code?
class Output 
{
    public static void main(String args[])
    {
         Object obj = new Object();
   System.out.print(obj.getclass());
    }
}

65.
What will be the output of the following Java program?
class A 
{
    public int i;
    public int j;
    A() 
    {
        i = 1;
        j = 2;
}
}    
class B extends A 
{
    int a;
    B() 
    {
        super();
    } 
}    
class super_use 
{
    public static void main(String args[])
    {
        B obj = new B();
        System.out.println(obj.i + " " + obj.j)     
    }
}