Inheritance + java

Inheritance + java

University

9 Qs

quiz-placeholder

Similar activities

Quiz #2 (Refer to Javatpoint in answering these question)

Quiz #2 (Refer to Javatpoint in answering these question)

University

13 Qs

Pewarisan (Inheritance) in JAVA

Pewarisan (Inheritance) in JAVA

University

10 Qs

UML-2020-158225-Week8-Class and Method Design-NTY

UML-2020-158225-Week8-Class and Method Design-NTY

University

10 Qs

Inheritance

Inheritance

University

10 Qs

OBJECT ORIENTED PROGRAMMING WITH JAVA

OBJECT ORIENTED PROGRAMMING WITH JAVA

University

10 Qs

Object/Abstract/Final in JAVA

Object/Abstract/Final in JAVA

University

10 Qs

P1_APLab2Quiz_B3B4

P1_APLab2Quiz_B3B4

University

10 Qs

java quiz on Encapsulation and Abstraction

java quiz on Encapsulation and Abstraction

University

10 Qs

Inheritance + java

Inheritance + java

Assessment

Quiz

Computers

University

Medium

Created by

Vivek Kumar

Used 15+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Inheritance is used when the relationship between two classes: _______ relationship.

"HAS-A"
"PART-OF-A"
"IS-A"
inverse

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A class that is inherited is called a ______ .

superclass

Subclass

subsetclass

Relativeclass

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does polymorphism mean?
Changing shapes
Having many forms
Being unchangeable
Easy

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which Java statement represents inheritance?

class body inherit Car

class body super Car

class body extends Car

class body override Car

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following is/are true about inheritance in Java?

I. A subclass inherits all the methods and variables of the superclass.

II. A subclass can override the methods of its superclass

III. A subclass has access to the private instance variables of the superclass.

I only

II only

III only

I and II only

I and III only

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

super keyword is used to access

only subclass methods

parent class variables and methods

subclass variables and methods

only parent class methods

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

A class member declared protected becomes a _______member of subclass.

public

private

protected

default

8.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is true about inheritance in Java?

1) Private methods are final.

2) Protected members are accessible within a package and

inherited classes (outside the package).

3) Protected methods are final.

4) Private methods cannot be overridden in derived class.

1, 2 and 4

Only 1 and 2

1, 2 and 3

2, 3 and 4

9.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Java does not support ___________ inheritance, through classes.

Multilevel

Multiple

Hybrid

Hierarchical