Important Notice:

Course Content
Algorithm & Flowchart Content
0/1
Algorithms & Flowchart to Solve Problems (Chapter-2) M3-R5.1
About Lesson

An algorithm may employ three control structures

  1. Sequential based processing
  2. Decision based processing
  3. Iterative or repetition processing

 

  1. Sequential based processing/Normal Processing:-

        इसका मतलब किसी भी एल्गोरिथ्म में Step by Step कार्य करना होता है जिसमें एक निश्चित क्रम होता है।

  1. Decision based processing/Controlling/selecting/conditional:-

किसी भी कंप्यूटर एल्गोरिथ्म को करने के लिए शर्तें होती हैं जिसका पालन करके हम एक कंप्यूटर प्रोग्रामिंग तैयार करते हैं।

  1. Iterative or repetition processing:-

लूप का मतलब एल्गोरिथ्म को बार – बार दोहराया जाता है।

 

An algorithm/Flowchart may employ three control structures

  1. Sequential based processing
  2. Decision based processing
  3. Iterative or repetition processing

 

  1. Sequential based processing/Normal Processing:-

                                 In the sequence structure, statements are place one after the other and the execution takes place starting from up to down.

  1. Decision based processing/Controlling/selecting/conditional/Branch:-

In branch control, there is a condition and according to a condition, a decision of either TRUE or FALSE is achieved. In the case of TRUE, one of the two branches is explored, but in the case of FALSE condition, the other alternative is taken. Generally, the ‘IF-THEN’ is used to represent branch control.

  1. Iterative or repetition processing:-

The loop or repetition allows statements to be executed repeatedly based on certain loop condition e.g. WHILE, FOR loops.

error: Content is protected !!