BASIC Decision Statements

The goal of decision statements is to execute one statement out of several, based on some value. There are two decision statements:
a) If - choose one of two possible statements, based on a logical (true-false) value
b) Select - choose one of many possible statements. Though much more powerful than the If, it is more complicated and less used.

Links:
If Statement
The Select Case Statement
BASIC Flow of Control