A Cup of Expressio(ns)
Bits and Bytes
Objectification
Opinions May Be Variable
Compare and Contrast
100

23 % 7

2

100

Either a 0 or a 1.

What is a bit?

100

The type of programming language Java is.

What is object oriented?
100

Variable that can be used to store whole numbers.

What is an integer? (int)

100

A variable declared as a "final" that cannot be changed.

What is a constant?

200

(double) 36 / 4

9.00

200

The smallest addressable unit of memory.

What is a byte?

200

A software representation of a real-world object or concept.

What is an object?

200

Variable that can store a single character.

What is a char?

200

A type of conditional statement that performs different actions based on a conditional expression that evaluates to a string, integer, or character.

What is switch or switch/case?

300

true && false

What is false?

300

A machine language for a virtual machine.

What is bytecode?

300

Principle that says an object can be composed of multiple components.

What is encapsulation?

300

Variable that can store fractional or decimal numbers.

What is a double? (float also acceptable)

300

A type of error that results from a looping running too many times, or too few.

What is an off-by-one error?

400

4 + 6 * 5

34

400

A program or part of a program written in a high level language.

Source code

400

Principle that means some components are not directly accessible.

What is information hiding?

400
Variable type that stores a value of true or false.

What is boolean?

400

A process that happens in logical expression evaluation where the evaluation stops because an answer has already been determined.

What is short-circuit evaluation?

500

true && (true || false)

What is true?

500

A set of directions for solving a computational problem.

What is an algorithm?

500

Code that can be called to perform a specific, pre-defined action.

What is a method?

500

Variable type that stores a word, phrase, or sentence.

What is string?

500

A type of variable that stores multiple predefined constants.

What is an enum?