Flowcharting Flashcards

1
Q

___________________ is a diagram that depicts the “flow” of a program.

A

FLOWCHART

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

______________ represented by rounded rectangles

A

TERMINALS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

______________ indicate a starting or ending point

A

TERMINALS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

______________ represented by parallelograms.

A

INPUT or OUTPUT OPERATIONS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

_____________ indicate an input or output operation.

A

PARALLELOGRAM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

__________ represented by rectangles

A

PROCESSES

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

_____________ indicates a process such as a mathematical computation or variable assignment.

A

RECTANGLES

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Name the four flowchart structures.

A

Sequence
Decision
Repetition
Case

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A series of actions are performed in sequence.

A

SEQUENCE STRUCTURE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

One of two possible actions is taken, depending on a condition.

A

DECISION STRUCTURE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

______________ represents part of the program that repeats. This structure is frequently referred to as a loop

A

REPETITION STRUCTURE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

This is a repetition structure wherein the condition is tested before any actions are performed.

A

PRE-TEST REPETITION STRUCTURE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

This is a repetition structure wherein the condition is tested after the actions are performed

A

POST-TEST REPETITION STRUCTURE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

A post-test repetition structure always performs its actions at least once.

A

TRUE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

This is a structure wherein one of several possible actions is taken, depending on the contents of a variable.

A

CASE STRUCTURE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

____________ allows you to connect two flowchart segments.

A

CONNECTORS

17
Q

There are two types of flowchart segments.

A
  1. On-page connector
  2. Off-page connector
18
Q

______________ is represented by a special symbol

A

MODULE

19
Q

The position of the module symbol indicates the point the module is executed

A

TRUE