What is the best primitive type for this example?
1.714
What is a double?
What is this symbol used for?
||
What is an or?
What does an if statement do?
What is runs a specific code if a condition is met?
What is the result of this expression?
(1/3) + (8/15)
What is 13/15?
What does Scanner do?
What is allows the user to type something into the computer?
What is the best primitive type for this example?
true
What is a boolean?
What is this symbol used for?
&&
What is an and?
What is an if/if-else statement?
What is -14 * (12-5) +3
What is -95?
What is the first thing you have to write when you are trying to use scanner?
Can you name four primitive types?
What is char, boolean, int, double, long, short, float, and byte?
What does System.out.println(); do?
What is an if statement inside of an if statement?
What is the answer to this expression?
12+(5-3)*7-(8/4)
What is 13?
What is the symbol used for scoping? (scope)
What are brackets/braces?
What is the best primitive type for this example?
g
What is a char?
What is !?
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)
What is the rule when you divide fraction?
What is keep, change, flip?
What is the code that we used to compare two Strings?
What is .equals(); or a.equals("b");?
What does a data type do?
What is declaring a variable?
What does modulo % do?
What is gives the remainder after dividing two numbers?
What are the two errors in this code?
System.out.println("There is only one error)
What is missing a " and a ;?
((3/4)+(9/12) - (1/2)) *2
What is 2?
What is the procress of turning one primitive type to another primitive type called?
What is type casting?