Skip to content

We use essential cookies to sign you in and remember your settings. With your permission we also use analytics cookies to understand how the site is used. See our privacy policy or fine-tune this anytime at cookie settings.

SubjectPaid lesson

ALGORITHMS FLOWCHARTS

ClassNotes Team 3 MIN READUPDATED 13 JUN 2026

DATA PROCESSING SSS2 SECOND TERM

WEEK 8

ALGORITHMS FLOWCHARTS

Contents

The algorithm is the step-by-step procedure of solving a particular problem. It is simply a sequence of clear and precise instructions for solving a particular problem. Algorithms are usually written in English and some few mathematical notations (signs, symbols)

Characteristics of Algorithms

  1. They are written in sequence.
  2. They are written in English-like statements.
  3. Finite, it must have a beginning and an end.
  4. Should be effective
  5. Should not be ambiguous. Should be consistent.

Example

An algorithm to calculate an average of three numbers:

Step1: Enter the first number N1

Step2: Enter the second number N2

Step3: Enter the third number N3

Step4: Calculate the total (N1+N2+N3)

Step5: Calculate the average (N1+N2+N3)/3