CodeHS 4.5 Writing Classes and Instance Methods

CodeHS 4.5 Writing Classes and Instance Methods

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Java Methods

Java Methods

12th Grade

10 Qs

CSA Code.org Unit 2: Lesson 1 Attributes

CSA Code.org Unit 2: Lesson 1 Attributes

11th Grade

7 Qs

Object Oriented Programming

Object Oriented Programming

12th Grade

11 Qs

L2W3

L2W3

12th Grade

11 Qs

Code.org Unit 5 Vocab Quiz 1

Code.org Unit 5 Vocab Quiz 1

9th - 12th Grade

10 Qs

Object Oriented Programming Quizizz

Object Oriented Programming Quizizz

10th Grade - University

11 Qs

Recap - OOP

Recap - OOP

12th Grade

11 Qs

CodeHS 4.11 Primitives vs Objects

CodeHS 4.11 Primitives vs Objects

9th - 12th Grade

8 Qs

CodeHS 4.5 Writing Classes and Instance Methods

CodeHS 4.5 Writing Classes and Instance Methods

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Aaron Pavao

Used 12+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an instance variable?

a variable that stores the state of an object

a variable that defines the behaviors of an object

a variable that creates an instance of an object

an object

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do we define the behavior of an object?

instance methods

constructors

client class

instance variables

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When the video on CodeHS talks about visibility, what are they talking about?

the first keyword in a method that determines whether client classes can use the method

what Java sees the method as--the type of data that will be returned

whether the method uses data hiding

whether other programmers can see your code

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the return type of a method that doesn't return a value?

void

String

public

private

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Check everything that's true about a method's name.

It has to start with a letter

It has to be unique in the class

It can only have letters, numbers, and the underscore _ character

It needs to have parentheses after it

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a parameter?

inputs to a method

an instance variable

an instance method

Rick Astley