45.9k views
5 votes
Select the correct answer from each drop-down menu.

Maria is preparing a slide show on procedural programming. She wants to define procedural programming in one of the slides. Help Maria complete
the definition.

Procedural-oriented programming is a programming paradigm that views a problem as a series of ____ to be performed in a _____ manner.

a series of (objects, tasks, statements)

to be preformed in a (sequential, random, logical)

User Geha
by
8.5k points

1 Answer

0 votes

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:

User Timpone
by
7.6k points