1 / 9

Program Flow

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.

dex
Download Presentation

Program Flow

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Program Flow

  2. Sequence

  3. If / Then T F

  4. If Then Else T F

  5. 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

  6. Do While While Wend T F Do / Loop While T F

  7. For Next For I=1 to 10 T Step 1 F

  8. Nested Control Statements If Then T For I=1 F to 10 T Step 1 F

More Related