Conditional Operator
We call this a ternary operator (requires 3 operands) +, -, etc. are binary operators
Syntax: condition ? expression1 : expression2;
Sort of an abbreviated if-else statement
expression1 and expression2 must evaluate to the same type