Asked By
Baker Mich
5 points
N/A
Posted on - 05/30/2017
I’m a beginner and I’m facing certain problems in developing a program. I want to develop an efficient program. What are the basic steps involved in the programming ?
8 Simple Steps Involved In The Programming
A program means a set of commands given to the PC and a well-designed program helps in developing well efficient software. The basic steps involved in the programming are:
- The first basic step is to understand the user requirements.
- Analyze the problem completely. It is done for obtaining the user requirements.
- Determine the input and output that will be used in the respective program.
- Design is an Algorithm which refers to the logic of a program. It is a description of step by step in simple English of how to arrive at a particular solution.
- Design a Flowchart for the given problem. “Flowchart” is a diagrammatic representation of an algorithm.
- By the flowchart, program code is written. Program code can be written in any known language. For example, C, C++, Visual Basics, etc.
- After completion of the above steps, the program should be passed through testing and remove all the bugs. Make sure that the program written gives the correct result.
- Program Documentation, the last step of programming, should be done so that it is easier to modify or enhance the program whenever required.