Define the functionality of the following relational operators: <, < =, !=, ==, > =, >)
Describe when to use an equals method instead of == for equality comparisons
Use relational operators to control program flow
Define the functionality of the following boolean operators (&&, ||, and !)
Use boolean and relational operators to construct meaningful boolean expressions
Use boolean expressions to control program flow
Describe the behavior of an if-else statement
Describe the program flow through a series of nested if statements
Use nested if statements to control program flow
Use the else if construct to control program flow
Use a switch statement to control program flow
Rewrite a switch statement with one or more (potentially nested) if statements
Explain the purpose of the case, break and default reserved words as used in conjunction with switch statements