The Case Structure Is A Variation Of The ____ Structure.
Question: A loop must return to the ____ question at some later point in a structure.
Answer: loop-controlling
Question: Because you may stack and nest structures while retaining the overall structure, it might be difficult to determine whether a flowchart as a whole is structured.
Answer: T
Question: Structured programs can be easily broken down into routines or ____ that can be assigned to any number of programmers.
Answer: modules
Question: Attaching structures end to end is called ____ structures.
Answer: . stacking
Question: Placing a structure within another structure is called ____ structures.
Answer: nesting
Question: In older languages, you could leave a selection or loop before it was complete by using a ____ statement.
Answer: go to
Question: if someCondition is true then
do oneProcess
____
do theOtherProcess
Answer: else
Question: if-else examples can also be called ____ because they contain the action taken when the tested condition is true and the action taken when it is false.
Answer: dual-alternative selections
Question: No matter how complicated it is, any set of steps can always be reduced to combinations of the two basic structures of sequence and loop.
Answer: f
Question: The case structure is a variation of the sequence structure and the do loop is a variation of the while loop.
Answer: f