Five Steps in Programming
Five Steps in Programming
Programs use algorithms which are like equations that tell the computer what task
to perform. The aim of the programmer is to create algorithms that are clear and
simple. Algorithms are expressed first in logical hierarchical form known as
modularzation. Using modules or (a complete thought) the programmer creates a
logical thought process for the computer to follow. After that the program is broken
down in greater detail using pseudocode. Pseudocode uses terms like if, else, and,
then to relate the programs rules to the computer.
A hierarchy chart, which represents top-down program design, explains the main
purpose of the program.
After the program has been designed it must the be coded or written. Using the
pseudocode and logic requirements from step two an appropriate programming
language must be selected. As stated in the introduction, coding languages differ in
specifications and usability. Once the appropriate code language has been chosen,
it is imperative that the programmer follow the syntax rules with as little deviation
as possible.
Documentation should be ongoing from the very beginning because it is needed for
those involved with program now and future. Upon completion User Documentation
for commercial use, Operator Documentation for people who run computer systems,
and Programmer Documentation for programmers charged with maintenance.