Chapter 1: I Am Not A Control Freak! (Control Structures)
TRUE/FALSE
1. All computer programs, no matter how simple or how complex, are written using one or more of three
basic structures: sequence, selection, and repetition.
2. Programmers must use the repetition structure in every program they write.
3. The selection structure is also referred to as the decision structure.
4. When used in a computer program, the selection structure alerts the computer that a decision needs to
be made, and it provides the appropriate action to take based on the result of that decision.
5. In a sequence structure a condition can evaluate to either true or false.
6. The redo structure is also referred to as a loop or as iteration.
7. Without the repetition structure, if you needed an instruction to repeat 20 times you would have to
write that instructions 20 times in your program.
MULTIPLE CHOICE
1. Control structures or ____ structures control the flow of a program’s logic.
2. The ____ structure in a computer program directs the computer to process the program instructions,
one after another, in the order listed in the program.