The meaning of a variable being static
What is a variable that is shared by all objects in the class?
The number that is returned when Math.abs(-2); is called
What is 2?
The amount of times this for loop will run
for(int x = 4; x != 10: x += 2)
What is 3 times?
The numerical values that represent on/off respectively
What is 1 and 0?
The 4 common primitive variable types
What is int, double, boolean, and char?
The number that is returned when Math.pow(2, 7) is called
What is 128?
The loop type that takes one Boolean input, when true it would loop until its variable becomes false
What is a While loop?
The conversion of the decimal number 52 to binary
What is 110100?
What a String looks like in code
What is a word in quotes, letter in quotes, or empty quotes (an empty String)?
The number set that is generated when Math.random()*10; is called
What is the range [0, 10)?
The name for when a loop is within another loop
What is a Nested Loop?
The conversion of EF (hexadecimal) into binary?
What is 10101010?
The syntax of a field variable and a local variable
What are private varType varName; and varType varName;
The number set that is generated from
(int)(Math.random()*21)+4;
What are the numbers {4, 5, 6, 7...24}?
The error that occurs when a loop does not terminate
What is a RuntimeException?
The value of 110110010/1011
What is 100111 r101?
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?
Code that returns an integer set of values from 6 to 37 inclusive
What does the code (int)(Math.random() * 32) + 6; do?
The 3 components of a for-loop
What are Variable initialization, Boolean condition, and Iterator?
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?