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

Python Classes and Objects

Python Classes and Objects

9th - 12th Grade

11 Qs

Classes & Objects

Classes & Objects

10th Grade

10 Qs

CodeHS 4.12 Inheritance

CodeHS 4.12 Inheritance

9th - 12th Grade

7 Qs

PE2 Module 3

PE2 Module 3

KG - Professional Development

11 Qs

PC4.8-PC4.9 CSC403 T2

PC4.8-PC4.9 CSC403 T2

9th Grade

10 Qs

Game Maker Loops and Arrays

Game Maker Loops and Arrays

9th Grade

10 Qs

PHP class and object

PHP class and object

10th 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