Conditional Operator
o Conditional operator: ternary operator or arithmetic if
o Takes three operand
Expression1? Expression2: Expression3
o Syntax:
o if Expression1 is TRUE then the computer will execute Expression2, but if Expression1 is
FALSE then the computer will execute Expression3