Branching
Choice of one or more execution sequences
One way: if (condition) then (activity)
Two way, mutually exclusive:
- if (condition) then (activity one) else (activity two)
Multi-way: if (condition one) then (activity one) else [ if (condition two) then (activity two) else (activity three) ]