Documento
Documento
various actions of a computer program. In this lesson, we'll learn why these symbols are
necessary and go over some of the most basic types used by programmers.
What Are Flowchart Symbols?
As we go about our daily lives, we are constantly seeing symbols. For instance, even without
words, we know the red octagon-shaped sign means STOP. With so many symbols in the
world, have you ever wondered about the symbols with lines and arrows connecting them that
programmers seem to find fascinating? Well, these are flowchart symbols.
Flowchart symbols are specific shapes used to create a visual representation of a program.
When you decide to enter data, show it on the screen, or print it to paper, you use the
input/output symbol. The display symbol signifies that information is displayed to the user.
Next, you'll find a brief example of a program that allows you to input your name then the
computer will display it on the screen.
Sometimes when you're drawing a flowchart, you may need to leave from a portion of the
chart and restart somewhere else, causing a break in the flow of the chart. For instance, you
may get to the bottom of a column and need to go back to the top of the page to continue
with a new column. Adding the connector symbol with a number in it at the exiting and re-
entry points with the same number in them helps the reader understand the flow and
continue following the program logic correctly.
Some Examples
Good programming requires preparation. A great way to prepare before writing even one line
of code, especially for the beginner, is using flowchart symbols to create a flowchart. Visual
representation of a program using flowchart symbols can increase your understanding of the
program flow. This also makes it easier to read, reducing the number of errors in your program
as well as reducing the amount of time you spend troubleshooting.