#147 Classes and Object

#147 Classes and Object

Assessment

Interactive Video

Computers

9th - 12th Grade

Easy

Created by

Myra Deister

Used 2+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a class in Java?

A method for creating variables

A blueprint for an object

A type of data structure

A way to organize code

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the two main components of a class?

Variables and objects

Methods and constructors

Variables and methods

Objects and blueprints

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the main method in Java?

To define variables

To create objects

To run code

 To declare methods

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create an object from a class in Java?

new ClassName();

ClassName object = create();

object.ClassName();

ClassName.newObject();

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the "dot notation" (e.g., object.variable) allow you to do?

Create new variables

Access things the object knows and can do

 Define new methods

Modify the class blueprint

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Can you create multiple objects from the same class?

No, each class can only have one object

Yes, but they will all share the same variables

Yes, you can create multiple unique objects

Only if the class has a special permission

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between a class and an object?

Classes are blueprints, objects are made from classes

Classes are variables, objects are methods

Objects are blueprints, classes are made from objects

There is no difference

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What keyword is used to create a method that doesn't return anything?

null

void

 empty

noreturn

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the basics of classes in Java?

 Public and private keywords

 Inheritance and polymorphism

Variables and methods inside a class that objects know

Constructors and destructors