REFERENCE Floyd, C., 1992. Software development as reality construction. In Software development and reality construction (pp. 86-100). Springer, Berlin, Heidelberg.
This are steps taking to achieve a successful goal in computer programming :
Analyzing the problem: This is the first step in the computer programming stages, this involves collection information as it would allow the user to identify difficulties related to the program.
Algorithm design: This stage is about listing all the instructions that are to be performed in the programming. it is also know as strategy
Flowchart: This is a graphical tool that shows the stages/steps that would be executed in the program.
all the instructions that were listed in the second stage is now displayed in graphical form so that they can be understandable.
Coding: This stage is about the programmer writing the coding instructions in computer language to solve different problems. this is also done after gathering the problems from the previous stage
Debugging: Errors are being removed from the program after it has been coded by the programmer , there are chances that some mistakes have been made by the programmer, a DRY RUN program is being ran to execute this mistakes.
Testing: in this stage the program is ran by a dummy data to check the behavior of the program and the result of the data.
Final output: This stage is done after all the stages above has been established, it involves the result of the TRUE DATA after the programmer has done a run through of the program expecting to get a positive result.
Documentation: this stage helps collect problems that occurs in the program after the final out output.
Comments
Post a Comment