| A | B |
| And operator | Logical operator that ANDs two boolean values. Written as && |
| boolean | A Java type that can either be true or false |
| Break statement | Breaks out of the current loop, without executing any more code in the loop |
| char | A Java type that represents a single character (a single letter) |
| Comment | A message in your code that explains what is going on |
| Comparison operator | Used to make comparisons between values |
| Condition | Code that you put inside an if statement or while-loop |
| Decomposition | Breaking your program into smaller parts |
| double | A Java type that represents a real number with decimal values |
| For Loop | Lets us repeat code a fixed number of times |
| If/Else statement | Control structure that lets us do either one section of code or another depending on the test |
| If statement | Lets you ask a question to the program and only run code if the answer is true |
| int | A Java type that represents an integer (a whole number) |
| Javadoc | A specific standard for commenting Java programs, a format to follow when commenting in order to clearly explain your code |
| Logical operator | Used to make logical associations between boolean values |
| Loop-and-a-half | A loop that has a break statement in the loop body |
| Not operator | Logical operator that negates a single boolean value. Written as ! |
| Or operator | Logical operator that ORs two boolean values. Written as || |
| readBoolean | Java method that lets us read in a true or false value input from the user |
| readDouble | Java method that lets us read in a decimal value input from the user |
| readInt | Java method that lets us read in an integer input from the user |
| readLine | Java method that lets us read in a line of input from the user as a String |
| Return statement | Exits a method and a returns a value |
| String | A Java type that represents a string of characters (text) |
| System.out.println | Java method that lets us print out a line of output to the user |
| Variable | A symbol or container that holds a value |
| While Loop | Lets us repeat code as long as something is true |