Java Class and Object Quiz

Java Class and Object Quiz

University

15 Qs

quiz-placeholder

Similar activities

EAPP

EAPP

11th Grade - University

15 Qs

Object Oriented Programming Language 2 Quiz 1

Object Oriented Programming Language 2 Quiz 1

University

10 Qs

Web Dev

Web Dev

University

15 Qs

Population & Sampling

Population & Sampling

University

16 Qs

Tebak judul lagu I

Tebak judul lagu I

KG - Professional Development

17 Qs

Object Oriented Programming with Design Patterns quiz 2

Object Oriented Programming with Design Patterns quiz 2

University

18 Qs

Name The Song  JW

Name The Song JW

KG - Professional Development

10 Qs

QUIZ KELAS JAVA

QUIZ KELAS JAVA

University

10 Qs

Java Class and Object Quiz

Java Class and Object Quiz

Assessment

Quiz

Other

University

Hard

Created by

CSE DOSE

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Which of the following best describes a class in Java?

A runtime entity

A blueprint for objects

An instance of an object

A collection of libraries

Answer explanation

Answer: B – a blueprint for objects
Explanation: A class acts as a template that defines variables and methods used to create objects.

2.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

What is an object in Java?

A compiled file

A set of instructions

An instance of a class

A variable

Answer explanation

Answer: C – an instance of a class
Explanation: Objects are specific instances created using a class, representing real-world entities.

3.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

What keyword is used to create an object in Java?

this

new

object

create

Answer explanation

Answer: B – new
Explanation: The new keyword allocates memory and creates a new object of a class.

4.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Which of the following is NOT a benefit of using classes and objects?

Encourages code reuse

Promotes modularity

Forces linear programming

Simplifies maintenance

Answer explanation

Answer: C – Forces linear programming
Explanation: OOP supports modular and scalable programming, not linear procedural code.

5.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Which of the following is a correct example of a class structure in Java?

class A { void A(); }

public static class A() {}

class A { int x; void show() {} }

object A {}

Answer explanation

Answer: C – class A { int x; void show() {} }
Explanation: This defines a class with a variable and method — the correct structure in Java.

6.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

What happens to instance variables when multiple objects are created from the same class?

Shared among all objects

Exist only in main()

Each object gets its own copy

Stored in static memory

Answer explanation

Answer: C – Each object gets its own copy
Explanation: Instance variables are unique for every object created from the class.

7.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Given the class Student, how do you create an object of it?

Student();

Student obj = new Student();

object Student = new();

new Student();

Answer explanation

Answer: B – Student obj = new Student();
Explanation: This is the correct syntax using the new keyword to instantiate an object.

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?