In Java, this method is used to generate a random number
What is Math.random?
This Java keyword is used to define a decision-making structure, where different code blocks are executed based on a specific condition
What is "if/switch"?
This flat, square disk could store 1.44 MB of data.
What is a floppy disc?
The output of:
if (5 * 7 < 4 * 9) return true; else return false;
What is true?
In Java, this method checks the length of a string data type
What is .length()?
What is a "semicolon"?
This Java keyword is used to skip the rest of the code inside of a loop and immediately proceed with the next iteration
What is "continue"?
This device, popular in the '90s, let people receive short text messages on their belt.
What is a pager or beeper?
In Java, this method lets you check if a character is a digit
What is Character.isDigit()?
The Java syntax for creating a single line comment
What is "two forward slashes"? (//)
This Java keyword is used to immediately terminate the execution of a loop, executing the next section of code after the loop
What is "break"?
Social media website that predates Facebook and was known for customizable profiles?
What is MySpace
If you name your Scanner scanner, this piece of code will read a double entered by a user
What is "scanner.nextDouble()?
This Java loop will always execute at least one time, and then continue executing as long as the condition is met
What is a "do-while" loop?
These were disks that were used to listen to music after cassette tapes, but before ipods and mp3 players
What are CD's
The names of 3 primitive data types for numbers in Java
What is short/int/long/float/double?
In Java, this method lets you convert a lowercase letter to uppercase
What is Character.toUpperCase()?
This is the process of converting a variable from one data type to another
What is "casting"/"type-casting"?
This Java loop iterates through each element of an array, collection, or other iterable object
What is a "for-each" loop?
In the early 2000s, this instant messaging platform by AOL was used by millions.
What is AIM (AOL Instant Messenger)?