Variables and Set Up
Errors
Decisions
Looping
Wild Card
100

Data type for variable containing a student's name. 

What is a string?

100

Insert ___ to complete class body. 

}

100

!=

What is operator for not equal to


100

Simplest type of loop to get a block of code to repeat. 

What is a while loop

100

Lilah's middle name.

What is Judith.

200

True or False value.

What is a boolean variable?

200

Insert ____ to complete statement.

;
200

||

What is "or"

200

Loops can contain switch and if statements.

What is true

200

How many hamburgers does McDonalds sell every second.

75

300

Where class files are stored.

What is a package?

300

Occur when correctly written code is asked to perform an impossible task.

Run-time error

300

size = 100;    weight =50;    value = 75;

 (value < 100) && (weight == 50)

 

True

300

Minimum times a loop will be executed

0

300

Abrham Lincoln was said to have a record in this sport.

What is wrestling.
400

How to print a statement on a new line. 

What is \n?

400

Occurs when you have used that format incorrectly.

What are syntax errors.

400

size = 100;    weight =50;    value = 75;

(size >=100) || (value >=100)      

True

400

Java will let you put a semi colon at the end of a while loop. 

What is True

400

Short term memory.

What is ram/

500

The data types that can hold decimal values.

What are float and double?

500

cannot be resolved as a variable

What is missing variable declaration

500

How you would exit a switch early.

What is break;

500

int count = 3;                                                     int points = 0;                                                  while (count>0) {

   count--;                                                                 points+=5;                                                         }

How many points will be printed? 

15

500

First summer block buster.

What is Jaws.