Important Notice:

Introduction to Flowcharts

Introduction to Flowcharts

3 views 1 min read

Introduction to Flowcharts / फ्लोचार्ट का परिचय :-

Flowchart किसी प्रक्रिया (process) या algorithm को symbols और arrows की सहायता से diagram के रूप में दिखाने की विधि है।

Flowchart में program के प्रत्येक step को एक विशेष symbol द्वारा दर्शाया जाता है और arrows यह बताते हैं कि अगला step कौन-सा होगा। यह program का logic समझने और planning करने में मदद करता है।

English

A flowchart is a method of representing a process or algorithm in the form of a diagram using symbols and arrows.

In a flowchart, each step of a program is represented by a specific symbol, and arrows indicate the next step in the sequence. It helps in understanding the logic and planning of a program.

Example:- Add Two Numbers / दो संख्याओं का योग :-

दो संख्याएँ A और B इनपुट करें, उनका योग निकालें और परिणाम प्रदर्शित करें।

Input two numbers A and B, calculate their sum, and display the result.

Algorithm :-

  • Start

  • Input A and B

  • Compute C = A + B

  • Display C

  • Stop

Flowchart:-

Related Notes