+3 votes
in Class 11 by kratos

What is structured programming? Mention its advantages.

1 Answer

+5 votes
by kratos
 
Best answer

Structured Programming deals only with logic and code and suggests making use of programming structures such as sequence, selection, iteration and modularity in programs.

1. Programs are easy to write because the programming logic is well organized.

2. Programs can be functionally decomposed into logical working units (modularity).

3. Modularity leads to easily understand the program, test and debug.

4. Easy to maintain because of single entry and single exit.

5. Eliminates the use of undisciplined controls (GO TO, BREAK, etc.,) in the program.

...