225k views
0 votes
Ben knows that procedural programming structures a computer program as a set of computational steps that performs a specific task. Which two terms represent such sets of code?

1) Functions and variables
2) Loops and conditions
3) Classes and objects
4) Arrays and pointers

User Humpy
by
7.5k points

1 Answer

4 votes

Final answer:

In procedural programming, specific tasks are structured through sets of code known as functions and variables. Functions execute tasks, and variables store data. They should not be confused with loops or conditions, which control flow, nor classes and objects, which belong to object-oriented programming.

Step-by-step explanation:

Within the realm of procedural programming, a computer program is organized into structures that are designed to perform specific tasks. These structures are known as sets of code that direct the computer on what operations to perform and how to perform them. When considering procedural programming, the terms that represent such sets of code are Functions and variables. Functions encapsulate a sequence of steps to execute a particular task, and variables are used to store and manipulate data throughout the program's execution.

In contrast, Loops and conditions control the flow of the program by repeating a set of instructions or executing them based on certain criteria. Classes and objects pertain to object-oriented programming, a different programming paradigm. Arrays and pointers are data structures and memory references, which, while instrumental in procedural programming, do not encapsulate a set of steps to execute a task.

User Imns
by
7.8k points