Java Inheritance Quiz

Java Inheritance Quiz

11th Grade

10 Qs

quiz-placeholder

Similar activities

C++ Recursion

C++ Recursion

8th - 12th Grade

12 Qs

Waterfall Method

Waterfall Method

10th - 11th Grade

10 Qs

PTM INHERITANCE

PTM INHERITANCE

11th Grade

15 Qs

DRAG-DROP INHERITANCE

DRAG-DROP INHERITANCE

11th Grade

10 Qs

GADV 03 - Scripting

GADV 03 - Scripting

9th - 12th Grade

10 Qs

EOC

EOC

9th - 11th Grade

15 Qs

7 OCR GCSE Computer Science - System Software

7 OCR GCSE Computer Science - System Software

10th - 11th Grade

10 Qs

Recursion in Java

Recursion in Java

11th - 12th Grade

15 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?