Back to Top

Quiz Time
Java

Java is a powerful general-purpose programming language.

Course Related Quiz

#Quiz
1
Discuss
JRE

Which component is responsible to run java program?

  • 1]

    JVM

  • 2]

    JDK

  • 3]

    JIT

  • 4]

    JRE

Solution
10
Discuss
Variable

Which of these is long data type literal?

  • 1]

     0x99fffL

  • 2]

    ABCDEFG

  • 3]

    0x99fffa

  • 4]

    99671246

Solution
100
Discuss
Inheritance

What will be the output of the following Java program?

    class A 
    {
        int i;
    }    
    class B extends A 
    {
        int j;
        void display() 
        {
            super.i = j + 1;
            System.out.println(j + " " + i);
        }
    }    
    class inheritance 
    {
        public static void main(String args[])
        {
            B obj = new B();
            obj.i=1;
            obj.j=2;   
            obj.display();     
        }
   }

 

  • 1]

    2 2

  • 2]

    3 3

  • 3]

    2 3

  • 4]

    3 2

Solution
101
Discuss
Inheritance

What will be the output of the following Java program?

    class A 
    {
        int i;
        void display() 
        {
            System.out.println(i);
        }
    }    
    class B extends A 
    {
        int j;
        void display() 
        {
            System.out.println(j);
        }
    }    
    class inheritance_demo 
    {
        public static void main(String args[])
        {
            B obj = new B();
            obj.i=1;
            obj.j=2;   
            obj.display();     
        }
   }

 

  • 1]

    0

  • 2]

    1

  • 3]

    2

  • 4]

    Compilation Error

Solution
102
Discuss
Inheritance

Which of these is correct way of inheriting class A by class B?

  • 1]

    class B + class A {}

  • 2]

    class B inherits class A {}

  • 3]

    class B extends A {}

  • 4]

    class B extends class A {}

Solution
103
Discuss
Inheritance

 A class member declared protected becomes a member of subclass of which type?

  • 1]

    public member

  • 2]

    private member

  • 3]

    protected member

  • 4]

    static member

Solution
104
Discuss
Inheritance

What is not type of inheritance?

  • 1]

    Single inheritance

  • 2]

    Double inheritance

  • 3]

    Hierarchical inheritance

  • 4]

     Multiple inheritance

Solution
105
Discuss
Inheritance

Does Java support multiple level inheritance?

  • 1]

    True

  • 2]

    False

Solution
106
Discuss
Inheritance

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.

  • 1]

    Runtime error

  • 2]

    Compile time error

  • 3]

    Code runs successfully

  • 4]

    First called method is executed successfully

Solution
107
Discuss
Inheritance

Which of the following is used in implementing inheritance through class?

  • 1]

    inherited

  • 2]

    using

  • 3]

    extends

  • 4]

    implements

Solution
#Quiz
Showing 1 to 10 of 122 entries