0% found this document useful (0 votes)
11 views

Algorithm Design- flow chart

Flowchart to help

Uploaded by

fizzambn.9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views

Algorithm Design- flow chart

Flowchart to help

Uploaded by

fizzambn.9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

Algorithm Design

In computer programming terms, an algorithm is a set of well-defined


instructions to solve a particular problem. It takes a set of input(s) and produces
the desired output. For example,

An algorithm to add two numbers:

1. Take two number inputs

2. Add numbers using the + operator

3. Display the result

Qualities of a Good Algorithm


1. Input and output should be defined precisely.

2. Each step in the algorithm should be clear and unambiguous.

3. Algorithms should be most effective among many different ways to solve a


problem.

4. An algorithm shouldn't include computer code. Instead, the algorithm should


be written in such a way that it can be used in different programming language
Examples of flow chart:

You might also like