Flowcharting Flashcards
___________________ is a diagram that depicts the “flow” of a program.
FLOWCHART
______________ represented by rounded rectangles
TERMINALS
______________ indicate a starting or ending point
TERMINALS
______________ represented by parallelograms.
INPUT or OUTPUT OPERATIONS
_____________ indicate an input or output operation.
PARALLELOGRAM
__________ represented by rectangles
PROCESSES
_____________ indicates a process such as a mathematical computation or variable assignment.
RECTANGLES
Name the four flowchart structures.
Sequence
Decision
Repetition
Case
A series of actions are performed in sequence.
SEQUENCE STRUCTURE
One of two possible actions is taken, depending on a condition.
DECISION STRUCTURE
______________ represents part of the program that repeats. This structure is frequently referred to as a loop
REPETITION STRUCTURE
This is a repetition structure wherein the condition is tested before any actions are performed.
PRE-TEST REPETITION STRUCTURE
This is a repetition structure wherein the condition is tested after the actions are performed
POST-TEST REPETITION STRUCTURE
A post-test repetition structure always performs its actions at least once.
TRUE
This is a structure wherein one of several possible actions is taken, depending on the contents of a variable.
CASE STRUCTURE