| A | B |
| Algorithm | A list of steps to solve a problem in English. |
| Pseudocode | A mix of English language and code that represents what you want your program to do. |
| Flowchart | Use of symbols and text to give a visual representation of a solution to a problem. |
| Variable | Name space in memory |
| forever loop | continues to loop until the program closes |
| repeat loop | continues to loop for a specified number of times |
| repeat until loop | continues to loop until a condition is met |
| Modulus division | Division that returns the remainder of the division |