The Flowchart Structures Flashcards

1
Q

How many flowchart structures are there?

A

4 Flowchart Structures

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

Name the 4 Flowchart Structures

A
  • Sequence Structure
  • Decision Structure
  • Repetition Structure
  • Case Structure
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A flowchart structure that a series of action is performed in a sequence.

A

Sequence Structure

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

A flowchart structure that represents part of the program that repeats. Also known as a loop.

A

Repetition Structure

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

A flowchart structure that 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
6
Q

A flowchart structure that one of SEVERAL possible actions is taken, depending on a condition.

A

Case Structure

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

What action are you going to do to stop the infinite loop created by a repetition structure?

A

By Controlling the Repetition Structure

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

How can this flowchart be modified so its no longer an infinite loop?

A

By adding an action within the repetition that changes the value of the variable.

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

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
10
Q

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
11
Q

Structures that are commonly combined to create more complex algorithms.

A

Combining Structures

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