81.
What will be the output of the following Java program?
class A 
{
int i;
int j;
     A() 
     {
         i = 1;
         j = 2;
     }
}
class Output 
{
     public static void main(String args[])
     {
          A obj1 = new A();
          A obj2 = new A();
    System.out.print(obj1.equals(obj2));
     }
}

82.
What would be the result if a class extends two interfaces and both have a method with same name and signature? Lets assume that the class is not implementing that method.

86.
What will be the output of the following Java code?
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)     
    }
}