InterviewSolution
Saved Bookmarks
| 1. |
What are your thoughts on Structured Programming? |
|
Answer» STRUCTURED PROGRAMMING is a programming paradigm in which the control flow is completely structured. A structure is a block that has a set of RULES and has a DEFINED control flow, such as (if/then/else), (while and for), block structures, and subroutines. Nearly all programming paradigms, including the Object-Oriented Programming model, require structured programming. |
|