A finite set of instructions that accomplish a task.
What is an algorithm?
An instance of a class.
What is an object?
A mistake in the code that does not follow a programming language's syntax.
What is a syntax error?
int x = 5;
System.out.println(x >= 5);
What is true?
The greatest teacher to ever live.
Who is Ms. Sartorio?
The data that is operated on.
What is an operand?
A class that can be extended to create subclasses.
What is a superclass?
An error that occurs when an operation makes an integer value greater than its maximum.
What is an overflow error?
double x = 7;
int y = 2;
System.out.println(x / y);
What is 3.5?
Ms. Sartorio has been finding pictures of ____.
What are Labubus?
A collection of methods or reusable components of code.
What is a library?
A class that extends a superclass and inherits its attributes and behaviors.
What is a subclass?
An error that occurs when an operation makes an integer value less than its minimum.
What is an underflow error?
int josh = 7;
int david = 2;
int answer = josh / david;
System.out.println(answer);
What is 3?
This project required one month of everyone's time.
What is the unit 1 project?
Specifies that a method should not have a return value.
What is void?
To define a method in a subclass with the same method signature as a method inherited from a superclass.
What is an override?
An error due to limited floating-point precision, causing discrepancies in computation.
What is a round-off error?
int x = 4;
int y = 6;
System.out.println(x * 2 == y && y - x == 3);
What is false?
Ms. Sartorio's favorite student.
Who is Yasir Hassoon?
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?
An object-oriented programming principle where a subclass inherits the attributes and behaviors of a superclass.
What is inheritance?
An error that occurs when a loop repeats one time too many or one time too few.
What is an off-by-one error?
int a = 3;
int b = 4;
System.out.println(!(a > b) && a + b == 7);
What is true?
Ms. Sartorio's favorite animal.
Who is Moo Deng?
