Types of logic used in the flowchart

Prabhu TL
2 Min Read
Disclosure: This website may contain affiliate links, which means I may earn a commission if you click on the link and make a purchase. I only recommend products or services that I personally use and believe will add value to my readers. Your support is appreciated!


Sequential Execution
: In this logic the instructions are executed one after the other sequentially.

Transfer of control: This is a logic which is used when the option to be chosen depends upon the result of the decision. The control is transferred to a particular path if the result of the decision branches to that path.

Looping: In looping or repetitive logic, an instruction or a number of instructions are executed more than once. The instructions are executed till the decision criteria is true. The decision criteria can be placed before the loop or after the loop depending upon the statements which are to be executed in the loop.

Let us see some examples of writing algorithms and flowcharts.

(1) Write an algorithm and develop a flowchart to convert the temperature input in Celsius scale to Fahrenheit scale.

Solution:

First write a detailed stepwise algorithm to do the conversion

Step 1: Start.

Step 2: Input temperature in Celsius (C).

Step 3: Convert to Fahrenheit (F) using the formula F = 9/5 * C + 32.

Step 4:Print the temperature in Fahrenheit (F). Step

5: Stop

Next on the basis of this step wise algorithm develop the flowchart using the appropriate flowchart symbols as follows:

Share This Article
Prabhu TL is a SenseCentral contributor covering digital products, entrepreneurship, and scalable online business systems. He focuses on turning ideas into repeatable processes—validation, positioning, marketing, and execution. His writing is known for simple frameworks, clear checklists, and real-world examples. When he’s not writing, he’s usually building new digital assets and experimenting with growth channels.
Leave a review