Definition of Algorithms OR What are Algorithms

Definition of Algorithms OR What are Algorithms

Algorithms
are used to solve a problem step by step using english language. It is the part of software designing. An algorithm defines as the step by step procedure or method that can be carried out for solvingprogramming problems. An algorithm tells computer that how to solve problem systematically to get desired output. Mainly we follow following steps to design an algorithm.

Step 1 - START
It represents beginning of the algorithm.

Step 2 - DECLARE
The variables used in algorithm are declared in this step.

Step 3 - INPUT
Here we input the values

Step 4 - FORMULA
The required result is generated in this step.

Step 5 - OUTPUT
It displays the output or result.

Step 6 - STOP
It is an end of Algorithm