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 AND FLOWCHARTS

ClassNotes Team 2 MIN READUPDATED 5 JUL 2026

Computer Science ICT SSS2 Second Term

WEEK 8

ALGORITHMS AND FLOWCHARTS

Performance Objectives

Students should be able to:

  1. Explain the concepts of algorithms and flowcharts

Content

 

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