General Idea of a Conditional
CONCEPT: Computer programs execute all statements in the program in order unless the program is instructed to only execute certain statements under certain conditions
For example:
If (something is true) Then
[do this part of the program]
End If