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.