Program Design Tools
Computers are problem solving devices and it is an electronic programmable machines that requires a set of instructions to perform tasks. To facilitate a computer to solve problems effectively, clear and concise instructions must be provided to it. A programmer must provide clear instruction to perform task and he must have a plan to solve particular problem using programming tools like algorithm, flowchart and pseudo code.
Algorithm
An algorithm is the step wise logical instructions written in any human understandable language to solve particular problem in a finite amount of time. It is written in simple English language.
Steps used to develop algorithm are:
- The problem has to understood by the programmer.
- The expected output has to be identified.
- The logic that will produce the required output from the input has to be developed.
- The algorithm should be tested for accuracy for a given set of input data.
- The steps are repeated till the desired result is produced.
Characteristics of Algorithm
- All the instructions of algorithm should be simple.
- The logic of each steps must be clear.
- There should be finite number of steps for solving problems.
Flowchart
Flowchart is a pictorial representation of stepwise solution of a problem. It helps programmer in developing the program logic and serve as documentation for future reference. It uses different boxes linked by the arrows. The process of drawing flowchart is flowcharting.
How to draw flowchart?
- It should be neat and clean.
- The flow of procedure direction normally needs to keep from left to right or top to bottom.
- There must be only one entry and end point.
- Only one flow line should come out from a processing symbol.
Advantages
- Flowchart helps programmer to explain the logic of a program to other easily.
- Flowchart provides documentation support.
- Flowchart is helpful in detecting and removing bugs in a program in s systematic manner.
- With the reference of Flowchart programmer can write a program and correspond the program.
Disadvantages
- Flowcharts are time consuming and laborious to draw with proper symbols.
- The complicated logic of a program are not easy to represent.
Flowchart Sequence
Sequence Structure
It is a series of actions performed in sequential order.
Algorithm:
STEP 1: Start
STEP 2: Accept the first number a.
STEP 3: Accept the second number b.
STEP 4: Add a and b , and store in SUM.
STEP 5: Display the value of SUM.
STEP 6. Stop.
Flowchart:
Decision Structure
In this structure , one of two possible actions are performed, depending on a condition provided. A new symbol diamond represents Yes / No questions. If its Yes then program flow follow one path and if its No then program flow follow another path.
Algorithm
STEP 1: Start
STEP 2: Read Two numbers a and b.
STEP 3: Compare a and b.
If a is greater than b then print a otherwise print b.
STEP 4: Stop
Flowchart:
Repetition Structure
It represents part of the program that repeat for a certain number of times, It also uses diamond symbol for specifying condition. Repetition structure tests the condition and if the condition is true, it performs the action, it repeats until the condition is false.
Algorithm
STEP 1: Start.
STEP 2: Initialize the variable count to one.
STEP 3: Display the variable count by one.
STEP 4: Increase variable count by one.
STEP 5: Check whether count variable exceeds 10.
If Yes, Go to Step 3, If No Go to step 6
STEP 6: Stop
Flowchart:
Pseudocode
It is an artificial and informal language that helps programmers to develop algorithms. It is an outline of a program written in a form that can easily be converted into real programming statements. It cannot be compiled or executed and there are no real syntax.