Flowchart Flashcards
What are Flowcharts ?
- Help visualize what is goin on & help understand processes
- Find problems
When are flowcharts used ?
While designing & documenting simple processes or programs
What are the FIVE flowchart symbols ?
Start / End
Arrows
Input / Output
Process
Decision
What does ‘Start /End’ look like ?
An oval
What does ‘Arrows’ look like ?
A line is connected that shows the relationship between the shapes
What does ‘Input / Output’ look like ?
A parellelogram
What does ‘Process’ look like ?
A rectangle
What does ‘Decision’ look like ?
A diamond
What is Sequencing ?
The main logical structure of Algorithms of Programs where the instructions are presented in a Specific Correct Order
What does a Sequence contain ?
Any number of instructions but each must run in the order they are represented
What is Selection ?
Programming construct where a section of code in run only if a condition is met
The process of Making a Decision