(Print) Use this randomly generated list as your call list when playing the game. There is no need to say the BINGO column name. Place some kind of mark (like an X, a checkmark, a dot, tally mark, etc) on each cell as you announce it, to keep track. You can also cut out each item, place them in a bag and pull words from the bag.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
a loop inside another, or a condition inside another
nested
used when there are more than 2 possible outcomes
else if
a loop that never ends
infinite loop
the block of code that executes inside a loop
body
both parts must be true to execute the block of code
&&
code compiles and runs, but doesn't do what's intended
logic error
changing the type of a variable using (type)name
Casting
Where execution starts in a Java program
Main Method
when the code compiles, but a problem happens as its running
run-time error
specifying a name and type, and allocating memory for it
declaring a variable
a structure for iteration
loop
either part can be true to execute the block of code
||
The remainder operator (modulo)
%
used when we know how many times to iterate
for loop
A mathematical or logical expression that is either true or false.
Boolean expression
int, String, double, boolean, etc.
data type
code doesn't compile because of format
syntax error
a run-time error that happens when the program tries to go past the end of a string or array
out of bounds error
turns a true statement false and a false statement true
negation
!
assigning a value for the first time
initializing a variable
short circuit evaluation
when only half a compound conditional is evaluated, because the outcome is already determined (if first of AND is false, or first of OR is true)
writing down the values of variables as a loop executes
tracing
how to distribute a negation over a complex conditional
DeMorgan's Laws
used when number of iterations is determined by a condition
while loop