Final answer:
Control statements in computer programming that allow for the execution of tasks simultaneously or sequentially.
Step-by-step explanation:
The terms 'do together' and 'do in order' are described as control statements in computer programming. Control statements are used to control the flow of execution in a computer program. 'Do together' is a control statement that allows multiple tasks to be executed simultaneously, while 'do in order' is a control statement that allows tasks to be executed sequentially, one after another.
For example, in a programming language such as Scratch, 'do together' can be used to make two sprites move at the same time, while 'do in order' can be used to make one sprite move and then wait for it to finish before making another sprite move.
These control statements are important in programming as they enable developers to specify the order and timing of tasks, allowing for more complex and dynamic programs to be created.