InterviewSolution
Saved Bookmarks
| 1. |
What do you understand about Structured Programming? |
|
Answer» Structured Programming is a programming paradigm that involves a totally structured control FLOW. STRUCTURE refers to a block, such as (if/then/else), (while and for), block structures, and subroutines, that contains a set of RULES and has a DEFINED control flow. Structured programming is USED in nearly all programming paradigms, including the OOPs model. |
|