Answer:
Procedural-oriented programming is a programming paradigm that views a problem as a series of tasks to be performed in a sequential manner. In procedural programming, a program is broken down into a series of steps or procedures that are executed in a particular order to achieve a desired outcome. Each procedure is designed to perform a specific task, and the program flows from one procedure to the next until the final task is completed. This approach to programming is often used for creating small to medium-sized programs and is known for its simplicity, modularity, and ease of debugging.
Step-by-step explanation: