Program Flow
Legend Decision Operation End of Block
Sequence
If / Then T F
If Then Else F T
If Then / Else If / Else F T F T
Select Case T The select case statement executes only the first true choice. The switch control structure is the C++ and Java equivalent. It, however, returns and executes all true conditions unless a break statement is provided. F T F T F
While T F
Do / Loop While T F
Do While / Loop T F
For Next Limit? T Step F
Nested Control Statements Limit? T F For to 10 T Step F Step