Tuesday, May 3, 2011

Elementary Project Design Structure Module

In computer programming the elementary program design structure model is the most basic structure model. It is so basic because it only contains three parts, the setup, the process, and the wrap up. The first part of the process, the setup, is only done once at the start of the program. It mainly gathers the information and different files that will be necessary to execute the next step, which is the process. 

The process can be run more than once. It is run as many times as necessary to complete the tasks of the program, this repeat in the process is called the loop. A loop will run over and over again until a different outcome is reached at the end of the process. Once this happens, the final part of the elementary design structure takes place, which is called the wrap up. 

Just like the first part of the process, the setup, the wrap up is only done one time. The wrap up is closes out the files and information which was originally pulled up by the setup, and closes out the program. Since the elementary program design structure is so easy to understand it is normally the first problem solving technique that beginner programmers will learn in order to comprehend and start solving problems.

The elementary program design structure model can be applied to real life by practicing gathering all necessary tools to perform a task. Even if it is something as small as sweeping out the garage, or doing the laundry, it is important to make sure that you have all the necessary items required before you start working. Just like a computer program, if we do not prepare ourselves before we start a task we will fail, and we will fail quickly. Having all necessary tools for a job is essential when it comes to completely a task quick, and thoroughly. Sweeping out the garage won’t go very well without a broom. Sweeping all the dirt isn’t going to do you much good if you do not have a dust pan or a garbage bag. Another great practice we can apply from the elementary program design structure is the wrap up. Nobody likes a slob. It is always a good practice to clean up your work space after a task is completed. An employer will not keep you employed very long if you leave your work space looking like a bomb went off on your desk. Also it is not healthy to live in a dirty environment; we can develop sicknesses from leaving messes around our homes. Applying the elementary program design structure to our daily lives can greatly increase our efficiency around the house, and the work place.