Chapter 15: I’m on the Inside; You’re on the Outside (Nested Loops)
TRUE/FALSE
1. Nested loops occurs when one loop is placed immediately after another loop.
2. Like selection structures, repetition structures can be nested.
3. When nesting loops, both repetition structures must be pretest loops.
4. A programmer determines whether a problem’s solution requires a nested loop by studying the
code.
5. A clock uses nested repetition structures to keep track of the time.
6. In the clock application, the entire nested loop must be contained within the outer loop in order to
work properly.
7. To display minute values from 0 through 9 use the following syntax: for intMinutes = 0 to 9.
8. A text box can only display a limited amount of information.
9. A label control can have a scroll bar.
10. For a text box to include scroll bars, its ScrollBars and Multiline properties must be set appropriately.
11. To include scroll bars on a text box, you need to change the ScrollBar property’s setting from None to
either Horizontal or Vertical.