InterviewSolution
Saved Bookmarks
| 1. |
What is meant by Structured Programming? |
|
Answer» Structured Programming refers to the method of programming which CONSISTS of a completely structured CONTROL flow. Here structure refers to a block, which CONTAINS a set of rules, and has a definitive control flow, such as (if/then/else), (while and for), block STRUCTURES, and subroutines. Nearly all programming paradigms include Structured programming, including the OOPS model. |
|