8 Simple Steps Involved In The Programming

Asked By 5 points N/A Posted on -
qa-featured

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 ?

SHARE
Answered By 10 points N/A #297711

8 Simple Steps Involved In The Programming

qa-featured

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:

  1. The first basic step is to understand the user requirements.
  2. Analyze the problem completely. It is done for obtaining the user requirements.
  3. Determine the input and output that will be used in the respective program.
  4. 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.
  5. Design a Flowchart for the given problem. “Flowchart” is a diagrammatic representation of an algorithm.
  6. By the flowchart, program code is written. Program code can be written in any known language. For example, C, C++, Visual Basics, etc.
  7. 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.
  8. Program Documentation, the last step of programming, should be done so that it is easier to modify or enhance the program whenever required.

Related Questions