General Conditional Statement
v When operations must be performed for the true
outcome and different operations are need for a false
outcome, use the If-Then-Else statement
v General form
If <T/F expression> Then
     <statement list>
Else
     <statement list>
End If