Sequential Processing (क्रमिक प्रसंस्करण) :-

Sequential Processing एल्गोरिथ्म (Algorithm) की सबसे सरल संरचना (Structure) है। इसमें सभी निर्देश (Instructions) उसी क्रम (Sequence) में एक-एक करके (Step by Step) निष्पादित (Execute) होते हैं, जिस क्रम में उन्हें लिखा गया है।
इस संरचना में कोई निर्णय (Decision) या लूप (Loop) नहीं होता। प्रत्येक Step पूरा होने के बाद ही अगला Step निष्पादित होता है।
English
Sequential Processing is the simplest structure of an algorithm. In this structure, all instructions are executed one after another in the same order in which they are written.
There is no decision and no loop involved. Each step is completed before the next step begins.
Working (कार्यप्रणाली) :-
हिंदी
Sequential Processing में प्रोग्राम का प्रवाह (Program Flow) हमेशा Start → Input → Process → Output → Stop के क्रम में चलता है।
English
In Sequential Processing, the program flow always follows the order:
Start → Input → Process → Output → Stop
Example Algorithm (Add Two Numbers)
Start
Input A, B
SUM = A + B
Display SUM
Stop
Rules (महत्वपूर्ण नियम) :-
- सभी निर्देश क्रम (Sequence) में Execute होते हैं। / All instructions are executed in sequence.
- किसी भी Step को छोड़ा (Skip) नहीं जाता। / No step is skipped.
- इसमें कोई Decision (निर्णय) नहीं होता। / No decision is involved.
- इसमें कोई Loop (पुनरावृत्ति) नहीं होता। / No loop is used.
- प्रत्येक Step पूरा होने के बाद अगला Step Execute होता है। / Each step is executed only after the previous step is completed.
- Program का Flow Start से Stop तक सीधा चलता है। / The program flows directly from Start to Stop.
- सभी Statements केवल एक बार (Only Once) Execute होते हैं। / All statements are executed only once.
- यह सबसे सरल (Simple) Algorithm Structure है। / It is the simplest algorithm structure.
Uses (उपयोग) :-
- दो संख्याओं का योग निकालने के लिए। / Used to add two numbers.
- क्षेत्रफल (Area) निकालने के लिए। / Used to calculate area.
- साधारण ब्याज (Simple Interest) निकालने के लिए। / Used to calculate simple interest.
- औसत (Average) निकालने के लिए। / Used to calculate average.
- डेटा Input एवं Output के लिए। / Used for input and output operations.
- सरल गणनाओं (Simple Calculations) के लिए। / Used for simple calculations.