Search Header Logo

inheritance quiz

Authored by D Veena

Computers

12th Grade

Used 1+ times

inheritance quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to inherit a class in Java?

implement

extends

inherits

derive

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of relationship does inheritance represent in OOP?

Has-a

Uses-a

Is-a

Owns-a

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

class Animal {

void sound() {

System.out.println("Animal makes sound");

}

}

class Dog extends Animal {

void sound() {

System.out.println("Dog barks");

}

public static void main(String[] args) {

Dog d = new Dog();

d.sound();

}

}

Animal makes sound

Dog barks

Compilation error

Runtime error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not true about inheritance in Java?

A subclass inherits all members of the superclass

Private members of the superclass are accessible in the subclass

Constructors are not inherited

A subclass can override non-final methods of the superclass

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following inheritance types does Java support directly?

Multilevel inheritance

Multiple inheritance using classes

Hybrid inheritance

Multipath inheritance

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?