Java Inheritance Quiz

Java Inheritance Quiz

11th Grade

10 Qs

quiz-placeholder

Similar activities

OOP2 Understanding Inheritance in OOP

OOP2 Understanding Inheritance in OOP

11th Grade

10 Qs

AP Exam Review

AP Exam Review

11th Grade

10 Qs

Inheritance and Class Hierarchies

Inheritance and Class Hierarchies

10th - 12th Grade

15 Qs

APCSA Recursion

APCSA Recursion

9th - 12th Grade

11 Qs

Python L2- Quiz 6

Python L2- Quiz 6

5th - 12th Grade

8 Qs

CS Data Structure Quiz

CS Data Structure Quiz

11th Grade

15 Qs

APCS unit 9

APCS unit 9

11th Grade

15 Qs

Java Inheritance Quiz

Java Inheritance Quiz

Assessment

Quiz

Computers

11th Grade

Easy

Created by

Quizizz Content

Used 14+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet if `class B extends A` and both classes have a method `display()` that prints "A" in class A and "B" in class B, and method `display()` of class B calls `super.display()`? ```java B obj = new B(); obj.display(); ```

A

B

AB

BA

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What access modifier should be used for a superclass method to ensure that it can be overridden by any subclass in any package?

private

protected

public

default

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which principle of Object-Oriented Programming is demonstrated by method overriding?

Encapsulation

Inheritance

Polymorphism

Abstraction

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct way to call a superclass method from a subclass in Java?

super.methodName();

this.methodName();

superclass.methodName();

methodName();

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Java, which keyword is used to refer to the parent class of a class?

parent

super

this

base

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is method overriding in Java?

Changing the value of a method's parameters in the subclass.

Providing a specific implementation of a method that is already provided by its superclass.

Removing a method from the superclass in the subclass.

Calling a method from the superclass in the subclass.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What keyword is used to inherit a class in Java?

extends

implements

inherits

uses

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?