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

Recap - OOP

Recap - OOP

12th Grade

11 Qs

PE2 Module 3

PE2 Module 3

9th - 12th Grade

10 Qs

CodeHS 5.6 The List Interface

CodeHS 5.6 The List Interface

9th - 12th Grade

10 Qs

Object Oriented Programming in Python

Object Oriented Programming in Python

12th Grade

10 Qs

Option D - OOP

Option D - OOP

11th - 12th Grade

9 Qs

Python Classes and Objects

Python Classes and Objects

9th - 12th Grade

11 Qs

CodeHS 4.15 Interfaces

CodeHS 4.15 Interfaces

9th - 12th Grade

10 Qs

Introduction to Computer Science

Introduction to Computer Science

1st - 9th Grade

10 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