Answer:
For a flow chart, there is a standardized set of symbols to represent different elements of the program:
- Oval or Rounded Rectangle: Represents the start or end points of a process or program.
- Rectangle: Represents a process or action, such as a calculation, data manipulation, or function call.
- Diamond: Represents a decision point or a conditional statement, such as an "if" statement. It usually contains a question or condition that is either true or false.
- Parallelogram: Represents input or output operations, like reading data from a file or printing the result.
- Arrow: Represents the flow of control between different elements in the flowchart
Connect these symbols together with arrows and you can represent the flow of the program.
For the pseudocode, reference the flow chart you made (which should represent the control flow of the program) to assemble the outline of the program.