90 likes | 218 Views
Program Flow. Sequence. If / Then. T. F. If Then Else. T. F. Select Case. T. The select case statement executes only the first true choice.
E N D
If / Then T F
If Then Else T F
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
Do While While Wend T F Do / Loop While T F
For Next For I=1 to 10 T Step 1 F
Nested Control Statements If Then T For I=1 F to 10 T Step 1 F