Flowchart (Programming Fundamentals-1)

Kadir Taban
2 min readOct 11, 2021

--

What Is Flowchart ?

A flow chart is a type of diagram that represents an algorithm, workflow or process. The flowchart shows the steps as boxes of various kinds and their order by connecting the boxes with arrows. The representation illustrates a solution model to given problem.

Briefly, it makes use of symbols which are connected among them to indicate the flow of information and processing thus we call it flowchart.

Flow charts are better way of communicating the logic system which are helps for debugging process.

Simple Symbols Used In Flowchart Designs

#Terminal

it uses for start and stop process

#Input/Output

A paralellogram denotes any function of input/output type. Program instrucitons that take input from input devices and display output and output devices are indicated with paralellogram in Flowchart.

#Processing

A box represents arithmetic operations and data-manipulations.

#Decision

Decision based operations such as yes/no question or true/false are indicated by diamond in flowchart.

#Connectors

Used to join different flowline

#FlowLine

Indicates the flow of logic by connecting symbols.

How To Create Flow Charts Model ?

As you see, this is simple example We are starting and we take an input then we are assigning to process. depending on T/F we can take an output and stopped.

--

--

No responses yet