Data type for variable containing a student's name.
What is a string?
Insert ___ to complete class body.
}
!=
What is operator for not equal to
Simplest type of loop to get a block of code to repeat.
What is a while loop
Lilah's middle name.
What is Judith.
True or False value.
What is a boolean variable?
Insert ____ to complete statement.
||
What is "or"
Loops can contain switch and if statements.
What is true
How many hamburgers does McDonalds sell every second.
75
Where class files are stored.
What is a package?
Occur when correctly written code is asked to perform an impossible task.
Run-time error
size = 100; weight =50; value = 75;
(value < 100) && (weight == 50)
True
Minimum times a loop will be executed
0
Abrham Lincoln was said to have a record in this sport.
How to print a statement on a new line.
What is \n?
Occurs when you have used that format incorrectly.
What are syntax errors.
size = 100; weight =50; value = 75;
(size >=100) || (value >=100)
True
Java will let you put a semi colon at the end of a while loop.
What is True
Short term memory.
What is ram/
The data types that can hold decimal values.
What are float and double?
cannot be resolved as a variable
What is missing variable declaration
How you would exit a switch early.
What is break;
int count = 3; int points = 0; while (count>0) {
count--; points+=5; }
How many points will be printed?
15
First summer block buster.
What is Jaws.