click below
click below
Normal Size Small Size show me how
CIS116-Ch05 Terms
Introduction to Programming Chapter 05 - Terms
| Term | Definition |
|---|---|
| Repetition Structures | A repetition structure causes a statement or set of statements to execute repeatedly. |
| Condition-Controlled Loop | Uses a True-False condition to control the number of times it repeats. |
| Count-Controlled Loop | Repeats a specific number of times. |
| While Loop | Cause a statement or set of statements to repeat as long as a condition is true. (Pre-test Loop) While a condition is true, do some take. |
| Do-Until Loop | Causes a statement or set of statements to repeat until a condition is true. |
| Condition | Boolean expression |
| body of the loop | Lines that appear between While and End While |
| Infinite Loop | Continues to repeat until the program is interrupted. |
| Do-While Loop | Post-Test Loop that performs an iteration before testing its condition. Always performs at least one iteration. |