Answer:
B. Procedural
Step-by-step explanation:
Procedural Programming is a form of development where all possible programs can be reduced to just three structures: sequence, decision, and iteration. And during the practice of this concept the Procedural Programming was developed, where its advantages are:
- Programs made with subroutines or functions are programmed and tested once, although they can be used in various parts of the program as often as needed.
- You can create a library with functions and subroutines that can be used in other programs or by other programmers.
- With modularization we can preserve the refinements achieved in a specific part of the code and extend to every part of the system that will use the function or subroutine.
- Computer memory saving, as the module used is stored once, even if used in different parts of the program. It also allows that, at a certain moment of program execution, only the module or modules needed to execute this program portion are in main memory.
- Code hiding, as only routines and subroutines are available to other programmers.