OOPs Quiz - Advanced

OOPs Quiz - Advanced

University

25 Qs

quiz-placeholder

Similar activities

ROUTING

ROUTING

University

20 Qs

Carbohydrates

Carbohydrates

KG - University

20 Qs

CHFI Module 4 Review

CHFI Module 4 Review

University

20 Qs

Exception Handling Quiz

Exception Handling Quiz

University

25 Qs

Principles of Management-CIA-1

Principles of Management-CIA-1

University

20 Qs

Java MCQs on Threads and Exceptions

Java MCQs on Threads and Exceptions

University

24 Qs

Code Warriors

Code Warriors

University

30 Qs

Java Programming Challenge

Java Programming Challenge

University

20 Qs

OOPs Quiz - Advanced

OOPs Quiz - Advanced

Assessment

Quiz

Other

University

Easy

Created by

Crackify Crackify

Used 1+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code? class Test { int x; Test(int x) { this.x = x; } void print() { System.out.println(x); } } Test t = new Test(5); t.print();

5

0

Error

null

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which keyword is used to call a superclass constructor?

this

super

extends

base

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code? class A { A() { System.out.println("A's Constructor"); } } class B extends A { B() { System.out.println("B's Constructor"); } } new B();

B's Constructor

A's Constructor

A's Constructor B's Constructor

Error

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following can be overloaded?

Constructors

Static methods

Main method

All of the above

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the role of a constructor in Java?

Initialize objects

Destroy objects

Create classes

Run threads

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of these is NOT true about abstract classes?

Can have abstract and non-abstract methods

Can be instantiated

Can have constructors

Can have static methods

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which keyword is used to prevent inheritance?

private

static

final

const

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?