Flowcharts + Recursion Flashcards

1
Q

Flowchart (1)

A

A flowchart is a graphical representation of an algorithm or process through symbols

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

Arrows (1)

A

Shows the direction of data (flow)

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

Start and End (1)

A

Represented by rounded shapes

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

Process Block (1)

A
  1. ) Represented by a rectangle

2. ) Used to indicate calculations or actions

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

Input / Output (1)

A

Represented by a parallelogram

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

Decisions (1)

A

Represented by a diamond

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

Process Module (2)

A
  1. ) Represents one or more processes

2. ) Graphed by a rectangle with two lines

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

Recursion (3)

A
  1. ) Technique which finds the solution to a given problem by solving smaller instances of the same problem.
  2. ) In programming technique in which a function or method calls itself.
  3. ) Recursion needs a stop or exit from which it can go back to solve the original problem.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly