Vocab
Classes
Errors
Operating on Variables
Special
200

A finite set of instructions that accomplish a task.

What is an algorithm?

200

An instance of a class.

What is an object?

200

A mistake in the code that does not follow a programming language's syntax.

What is a syntax error?

200

int x = 5;

System.out.println(x >= 5);


What is true?

200

The greatest teacher to ever live.

Who is Ms. Sartorio?

400

The data that is operated on.

What is an operand?

400

A class that can be extended to create subclasses.

What is a superclass?

400

An error that occurs when an operation makes an integer value greater than its maximum.

What is an overflow error?

400

double x = 7;

int y = 2;

System.out.println(x / y);

What is 3.5?

400

Ms. Sartorio has been finding pictures of ____.

What are Labubus?

600

A collection of methods or reusable components of code.

What is a library?

600

A class that extends a superclass and inherits its attributes and behaviors.

What is a subclass?

600

An error that occurs when an operation makes an integer value less than its minimum.

What is an underflow error?

600

int josh = 7;

int david = 2;

int answer = josh / david;

System.out.println(answer);

What is 3?

600

This project required one month of everyone's time.

What is the unit 1 project?

800

Specifies that a method should not have a return value.

What is void?

800

To define a method in a subclass with the same method signature as a method inherited from a superclass.

What is an override?

800

An error due to limited floating-point precision, causing discrepancies in computation.

What is a round-off error?

800

int x = 4;

int y = 6;

System.out.println(x * 2 == y && y - x == 3);

What is false?

800

Ms. Sartorio's favorite student.

Who is Yasir Hassoon?

1000

Specifies a block of code to execute when the condition is true and a block of code to execute when the condition is false.

What is a two-way selection statement?

1000

An object-oriented programming principle where a subclass inherits the attributes and behaviors of a superclass.

What is inheritance?

1000

An error that occurs when a loop repeats one time too many or one time too few.

What is an off-by-one error?

1000

int a = 3;

int b = 4;

System.out.println(!(a > b) && a + b == 7);

What is true?

1000

Ms. Sartorio's favorite animal.

Who is Moo Deng?