Java Inheritance Quiz

Java Inheritance Quiz

11th Grade

10 Qs

quiz-placeholder

Similar activities

Java Quiz

Java Quiz

11th Grade

5 Qs

APCSA Recursion

APCSA Recursion

9th - 12th Grade

11 Qs

Inheritance and Class Hierarchies

Inheritance and Class Hierarchies

10th - 12th Grade

15 Qs

Pemrograman Berorintasi Objek

Pemrograman Berorintasi Objek

11th Grade

15 Qs

APCSA Inheritance, Superclass, Subclass

APCSA Inheritance, Superclass, Subclass

10th - 12th Grade

5 Qs

PE2 Module 3

PE2 Module 3

9th - 12th Grade

10 Qs

Unit 9 topic 2 quiz

Unit 9 topic 2 quiz

9th - 12th Grade

12 Qs

Option D - OOP

Option D - OOP

11th - 12th Grade

9 Qs

Java Inheritance Quiz

Java Inheritance Quiz

Assessment

Quiz

Computers

11th Grade

Easy

Created by

Wayground Content

Used 16+ 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?