CAI710-M2-Q1

CAI710-M2-Q1

12th Grade

15 Qs

quiz-placeholder

Similar activities

Y12 Data Rep Images

Y12 Data Rep Images

9th - 12th Grade

11 Qs

Internet Application in Education

Internet Application in Education

11th - 12th Grade

10 Qs

Kuiz Autocad

Kuiz Autocad

1st Grade - University

20 Qs

Working with SmartArt

Working with SmartArt

7th - 12th Grade

10 Qs

Getting Started with MS Office

Getting Started with MS Office

7th - 12th Grade

19 Qs

Redes de Computadores e Telecomunicações aula 2

Redes de Computadores e Telecomunicações aula 2

1st Grade - University

10 Qs

F2 First ICT Online Quiz

F2 First ICT Online Quiz

7th Grade - University

17 Qs

Module 23 - The Internet 2

Module 23 - The Internet 2

9th - 12th Grade

19 Qs

CAI710-M2-Q1

CAI710-M2-Q1

Assessment

Quiz

Computers

12th Grade

Easy

Created by

Muhammad Noman

Used 2+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which of the following best describes the “is-a” relationship in Java inheritance?

A subclass is part of a superclass.

A subclass contains a superclass.

A subclass is an extension of a superclass.

A superclass is dependent on a subclass.

A superclass cannot share attributes with its subclass.

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

In a software model, a 'Professor' class inherits from a 'Person' class. Which of the following best explains why this inheritance relationship is valid?

The 'Person' class is a sub-type of 'Professor'

The 'Professor' class is a specialized object.

A 'Professor' has a 'Person'.

A 'Professor' is a type of 'Person', so it can reuse common attributes and behaviors.

Both 'Professor' and 'Person' are classes in the same system.

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

If we have the classes Car and Vehicle, and Car extends Vehicle, which statement correctly explains the relationship?

A Car is-a Vehicle.

A Vehicle is-a Car.

A Car contains a Vehicle.

A Vehicle cannot be a superclass of Car.

A Car and Vehicle are unrelated.

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

When a subclass constructor does not explicitly call a superclass constructor using super(), what action does the Java compiler automatically take?

It calls all available constructors in the superclass to ensure proper initialization.

It throws a compile-time error because the superclass constructor must be explicitly called.

It automatically calls the no-argument constructor of the superclass.

It throws a runtime error because the superclass was not initialized.

It initializes the subclass but skips the initialization of the superclass.

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

If a superclass defines only parameterized constructors and no default (no-argument) constructor, what happens when the subclass does not explicitly call super(parameters)?

The compiler automatically inserts a call to the parameterized constructor.

The compiler automatically creates a default constructor in the superclass.

Compilation error because no suitable super() is available.

The subclass constructor executes successfully without initializing superclass variables.

The JVM provides default values to superclass attributes automatically.

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

In a scenario where a `Cat` subclass has a constructor `Cat()` and its `Animal` superclass has two constructors: `Animal()` and `Animal(String breed)`, what happens if `Cat()` does not explicitly call `super()`?

A compile-time error will occur.

The program will crash at runtime due to an unhandled exception.

The `Animal(String breed)` constructor will be called automatically.

The `Animal()` constructor will be called automatically.

The subclass constructor will run, but the superclass will not be initialized.

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What does method overriding mean in Java?

Writing multiple methods with the same name but different parameter lists in the same class.

Defining a method in a subclass with the same signature as a method in the superclass.

Preventing a subclass from accessing superclass methods.

Using a constructor in the subclass instead of the superclass method.

Changing the return type of a method in the subclass.

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?