Primitive Types
Prints, Expressions, and Operands
If Statements and Common Errors
Math
Miscellaneous
100

What is the best primitive type for this example?

 1.714

What is a double?

100

What is this symbol used for?

 ||

What is an or?

100

What does an if statement do?

What is runs a specific code if a condition is met?

100

What is the result of this expression?

(1/3) + (8/15) 

What is 13/15?

100

What does Scanner do?

What is allows the user to type something into the computer?

200

What is the best primitive type for this example?

true

What is a boolean?

200

What is this symbol used for?

&&

What is an and?

200
What happens if statements doesn't run, but we need to run a specific code?

What is an if/if-else statement?

200

What is -14 * (12-5) +3 

What is -95?

200

What is the first thing you have to write when you are trying to use scanner?

What is importing Scanner/ import java.util.Scanner;?
300

Can you name four primitive types?

What is char, boolean, int, double, long, short, float, and  byte?

300

What does System.out.println(); do?

What is printing out a statement?
300
What is a nested if statement?

What is an if statement inside of an if statement?

300

What is the answer to this expression?

12+(5-3)*7-(8/4)

What is 13?

300

What is the symbol used for scoping? (scope)

What are brackets/braces?

400

What is the best primitive type for this example?

g

What is a char?

400
What operator inverts a boolean values?

What is !?

400

What is wrong with the following code?

int num = 1;

if (num = 1){

    System.out.println("Hi");

}

What is there is a missing equals sign/ there is an assignment done instraead of a comparision? (any variation works)

400

What is the rule when you divide fraction?

What is keep, change, flip?

400

What is the code that we used to compare two Strings?

What is .equals(); or a.equals("b");? 

500

What does a data type do?

What is declaring a variable?

500

What does modulo % do?

What is gives the remainder after dividing two numbers?

500

What are the two errors in this code?

System.out.println("There is only one error)

What is missing a " and a ;?

500
What is the answer to the question below?

((3/4)+(9/12) - (1/2)) *2

What is 2?

500

What is the procress of turning one primitive type to another primitive type called?

What is type casting?