Variables + Naming Conventions
Random Numbers + Math Class
Loops
Binary Numbers + Other Number Systems
100

The meaning of a variable being static

What is a variable that is shared by all objects in the class?

100

The number that is returned when Math.abs(-2); is called

What is 2?

100

The amount of times this for loop will run

for(int x = 4; x != 10: x += 2)

What is 3 times?

100

The numerical values that represent on/off respectively

What is 1 and 0?

200

The 4 common primitive variable types

What is int, double, boolean, and char?

200

The number that is returned when Math.pow(2, 7) is called

What is 128?

200

The loop type that takes one Boolean input, when true it would loop until its variable becomes false

What is a While loop?

200

The conversion of the decimal number 52 to binary

What is 110100?

300

What a String looks like in code

What is a word in quotes, letter in quotes, or empty quotes (an empty String)? 

300

The number set that is generated when Math.random()*10; is called

What is the range [0, 10)?

300

The name for when a loop is within another loop

What is a Nested Loop?

300

The conversion of EF (hexadecimal) into binary?

What is 10101010?

400

The syntax of a field variable and a local variable

What are private varType varName; and varType varName;

400

The number set that is generated from

(int)(Math.random()*21)+4;

What are the numbers {4, 5, 6, 7...24}?

400

The error that occurs when a loop does not terminate

What is a RuntimeException?

400

The value of 110110010/1011

What is 100111 r101?

500

The differences between calling classes, methods, and variables

Why do Classes start with an uppercase letter and have no parentheses, Methods follow camelBackNotation and have parentheses, and Variables follow camelBackNotation and have no parentheses?

500

Code that returns an integer set of values from 6 to 37 inclusive

What does the code (int)(Math.random() * 32) + 6; do?

500

The 3 components of a for-loop

What are Variable initialization, Boolean condition, and Iterator?

500

The conversion of the hexadecimal number A2B to binary, and then convert the resulting binary number to octal (make sure to include both the binary and octal conversions in your answer)

What is 101000101011 and 24253?