Actions

Difference between revisions of "Structured Programming"

(Created page with "'''Structured Programming''' is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by...")
 
m
Line 1: Line 1:
'''Structured Programming''' is a programming paradigm aimed at improving the clarity, [[Quality|quality]], and development time of a [[Computer Program|computer program]] by making extensive use of the structured control flow constructs of selection (if/then/else) and repetition (while and for), block structures, and subroutines in contrast to using simple tests and jumps such as the go to statement, which can lead to “spaghetti code” that is potentially difficult to follow and maintain.<ref>Definition - What Does Structured Programming Mean? [https://press.rebus.community/programmingfundamentals/chapter/structured-programming/ Rebus]</ref>
+
'''Structured Programming''' is a programming paradigm aimed at improving the clarity, [[Quality|quality]], and development time of a computer program by making extensive use of the structured control flow constructs of selection (if/then/else) and repetition (while and for), block structures, and subroutines in contrast to using simple tests and jumps such as the go to statement, which can lead to “spaghetti code” that is potentially difficult to follow and maintain.<ref>Definition - What Does Structured Programming Mean? [https://press.rebus.community/programmingfundamentals/chapter/structured-programming/ Rebus]</ref>

Revision as of 21:12, 6 December 2022

Structured Programming is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by making extensive use of the structured control flow constructs of selection (if/then/else) and repetition (while and for), block structures, and subroutines in contrast to using simple tests and jumps such as the go to statement, which can lead to “spaghetti code” that is potentially difficult to follow and maintain.[1]

  1. Definition - What Does Structured Programming Mean? Rebus