4.1.2.2 Procedural-oriented programming Flashcards
1
Q
What is the structured programming approach?
A
Decomposition (of a problem/program) // use of top-down approach //
Avoidance of use of goto statements;
procedural programming subset
makes use of the control structures of selection (if/then/else) and repetition (while and for), block structures, and subroutines
can result in structured diagrams such as flowcharts and hierarchy diagrams,
OOP is considered a type of structured programming
2
Q
What are the advantages of the structured approach?
A
aimed at improving the clarity, quality, and development time of a computer program