Algorithm


Category: Programming

It is the procedure that describes how to solve a problem. When programming, an important thing to do is to unravel the problem and accordingly write down the flowchart of logical/mathematical steps and decisions to solve a problem. You could consider this as the algorithm or the procedure to follow.

Afterward, the programmer will transform each flowchart block into corresponding programming code. The sequence of all the instructions in the program is also called the algorithm.

Back