Programming Language Paradigm.
Monday, 4 January 2016 | 07:33 | 0 Panda[s]
Computer languages are categorized according to the approach they use to solve a problem.A paradigm, therefore, is a way in which computer language looks at the problem to be solved.
Structured programming is a programming paradigm aimed on improving the clarity, quality, and development time of a computer program:
- by making extensive use of subroutines, block structures and for and while loops.
Structures programming frequently employs a top-down design model, in which developers map out the overall program structure into seperate subsections.
A defined finction or set of similar functions is coded in a seperate module or submodule.
It means that code can be loaded into memory more efficiently and that modules can be reused in other programs.
After a module has been tested individually, it is then integrated with other modules into the overall program structure.