Oops moment/1

Oops moment/1

University

13 Qs

quiz-placeholder

Similar activities

Syllabus Quiz

Syllabus Quiz

University

10 Qs

Komposisi Tanah

Komposisi Tanah

University

18 Qs

Que sabemos de Go

Que sabemos de Go

University

10 Qs

Pressure Sensor Quiz

Pressure Sensor Quiz

University

11 Qs

Quiz sobre JavaScript

Quiz sobre JavaScript

University

10 Qs

Aircraft Structure Chapter 6

Aircraft Structure Chapter 6

University

10 Qs

DAY 35 WORKSHEET LSGD (Bridge Engineering)

DAY 35 WORKSHEET LSGD (Bridge Engineering)

1st Grade - University

15 Qs

c# practice

c# practice

University

11 Qs

Oops moment/1

Oops moment/1

Assessment

Quiz

Engineering

University

Medium

Created by

Mekha S R

Used 11+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

13 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which keyword is used to inherit a class in Java?

Implements

Inherits

Extends

Super

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which is the correct way to create an object of class Dog?

Dog d = Dog();

Dog d = new Dog;

Dog d = new Dog();

Dog = new d();

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which keyword refers to the current object?

this

super

final

extends

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does method overloading mean?

Using multiple classes

Creating methods with same name but different parameters

Calling one method from another

Using one method in multiple classes

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What keyword is used to call a parent class constructor?

parent

this

extends

super

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the final keyword do when applied to a class?

It prevents inheritance

It allows only static methods

It makes the class abstract

It allows method overriding

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

class Animal {

void sound() {

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

}

}

class Dog extends Animal {

void sound() {

System.out.println("Bark");

}

}

public class Main {

public static void main(String[] args) {

Animal a = new Dog();

a.sound();

}

}

Animal sound

Bark

Error

Nothing

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?