Chapter 8: Decisions, Decisions, Decisions (Selection Structure)
TRUE/FALSE
1. Many times the next instruction processed depends on the result of a decision that must be made.
2. A programmer determines whether a problem’s solution requires a selection structure by studying the
problem specification.
3. The selection structure is referred to as a single-alternative selection structure because it requires one
or more actions to be taken only when its condition evaluates to true.
4. Selection structures that contain instructions in the true path and the false path are referred to as
double-alternative selection structures.
5. Items in square brackets are required in the syntax of an algorithm.
6. Comparison operators in Visual Basic do not have an order of precedence.
7. Arithmetic operators are evaluated after any comparison operators in an expression.
8. The oval in a flowchart is called the selection/repetition symbol.
9. The two flowlines leading out of a diamond should be marked so that anyone reading the flowchart
can distinguish the true path from the false path.
10. In Windows applications, check boxes provide one or more independent and nonexclusive items from
which the user can choose.
11. During run time, you can determine whether a check box is selected or unselected by looking at the
value in its Checked property.