What is the class library made out of?
Several clusters of related classes
What does Java API stand for?
Application Programmer Interface
What do you use to get a reader for characters?
InputStreamReader
How does an IF statement function?
Reads the condition(s) and if it is true then executes the code. If they are false, then it skips the statement
How does an ELSE IF statement function?
Allows the program to do one thing if a statement is true but another thing if it is false
How does the ELSE statement function?
If the first statement is not true, it is disregarded and any other possibility is within the else command