Procedural Programming Flashcards
1
Q
what is procedural programming?
A
The procedural programming paradigm is where program code is divided up into procedures, which are discrete blocks of code that carry out a single task.
2
Q
Benefits of Procedural Programming:
A
- subroutines can be called many times, reducing the amount of repeated code.
- Large projects can be completed quicker as different programmers work on different subroutines concurrently.
- easier to test and debug.
3
Q
Drawbacks of procedural programming:
A
- only focuses on what needs to be done, rather than on the integrity of the data that it manipulates.