100% CORRECT ANSWERS
Whether you are drawing a flowchart or writing pseudocode, to represent decision
outcomes you can use either: Yes and No, or True and False. - Answer- True
Any program, no matter how complicated, can be constructed using one or more of only
four structures. - Answer- False
In a structured program, structures can be stacked or connected to one another only at
their start or exit points. - Answer- True
Professional programmers find it just as easy to modify and maintain structured
programs as unstructured programs. - Answer- False
All logic problems can be solved using only the three structures—____. - Answer-
sequence, selection, and loop
Programs that do not follow the rules of structured logic are ____ programs. - Answer-
unstructured
The purpose of the ____ input step is to control the upcoming loop. - Answer- priming
Programs that use ____ code are so difficult to alter that when improvements are
required, developers often find it easier to abandon the existing program and start from
scratch. - Answer- spaghetti
As programs get bigger, they get more confusing if they're not structured. - Answer-
True
A sequence can contain any number of tasks, but there is no chance to branch off and
skip any of the tasks. - Answer- True
In code, it is perfectly correct for one branch of the selection to be a "do nothing"
branch. - Answer- True
A ____ input is the statement that reads the first input value in a program. - Answer-
priming