Analytics Programming Flashcards
WGU course D598
What is the primary purpose of using flowcharts to represent solutions to programming problems?
To visually represent the logical flow of the program.
When creating pseudocode for a programming task, what should be the focus?
Overall logic and structure of the program
Which are the essential elements represented in flowcharts?
Input/output, process/action, decision, start/end
What are the seven best practices for a flowchart?
- Start each task description with action verbs
- Be concise
- Add hyperlinks
- Organize from left to right and top to bottom
- Use the same swimlanes from page to page
- Adjust for readability
- Maintain open space
Flowchart terminal
The terminal is an oval that indicates the beginning and end of a program. It usually contains the words Start or End.
Flowchart flowline
The flowline is a line from one symbol pointing towards another to show the process’s order of operation. This displays the flow of execution in a program.
Flowchart Input/Output
Input/output is represented by a rhomboid and indicates the input or output of data. This is similar to setting a value to a variable.
Flowchart Process
A process, represented by a rectangle, is an operation that manipulates data. Think of this as changing the value of a number-based variable using an operator such as +.
Flowchart Decision
Decisions are represented by a rhombus and show a conditional operation that will determine which path a program should take. This is similar to conditional statements which control the flow of execution in a program.