This is the print statement in Java (either one)
What is System.out.println()?
boolean bool = 5 >7 - That code segment sets the value of bool to this
What is false?
Math.sqrt() does this function, like with the number 49
What is square root?
A good place to practice when you first start driving is in this area - a place where you put your car when you're not on the road
What is a parking lot?
This is the correct way to declare a single-line comment in Java.
//
Have a rational number? Use this variable type that stores decimals!
What are doubles?
This is the expression used to compare two values (non-Strings)
Math.pow() does this function, resulting in numbers like 81
What is exponents?
This is the road that Fort Settlement Middle School is located on
What is Elkins Road?
This method serves as the entry point for a Java application.
What is public static void main(String[] args)?
i=i+1 - This is what that code segment does
What is adds one to i?
This is the kind of statement that is usually found in between if and else statements
What are else if statements?
Math.random() generates a random number from this range
What is 0 to 1, including 0 but not 1?
This even road goes east-west through Houston and stretches all the way from Santa Monica in California to Jacksonville in Florida. It's also the main road to get from Katy to Downtown Houston
What is I-10?
This symbol is used to end a statement in Java.
What is ; (semicolon)?
DAILY DOUBLE
This is what it's called when you change one variable type into another
When you use this kind of statement, it's usually to catch anything that didn't fit the conditions of the blocks before it
What is an else statement?
Math.ceil(), Math.round(), and this function are all rounding methods in the Math class
What is Math.floor()?
This is a type of highway that does not have traffic lights or stop signs - watch out!
What is a freeway?
This access modifier allows a member to be accessible only within its own class.
What is private?
Adding two Strings together is called this - kind of a long name for such a simple concept
What is concatenation?
This is what to use when comparing equality in Strings
What is .equals?
System.out.println(Math.pow(7,3)); - This is the result of that code segment
What is 343?
This highway network in Germany is known for its lack of a speed limit
What is the Autobahn?
This primitive data type in Java is used to store a single 16-bit Unicode character.
What is char?