65.9k views
3 votes
Jasmine wrote a program where the actor does things in order. Which term best describes this program?

A) Sequential
B) Selection
C) Conditional
D) Iteration

User Roei Nadam
by
8.2k points

1 Answer

7 votes

Final answer:

The term that best describes Jasmine's program where actions are performed in order is Sequential. This programming paradigm executes tasks one after the other in a specific sequence.

Step-by-step explanation:

If Jasmine wrote a program where the actor does things in order, the term that best describes this program is Sequential. Sequential programming is characterized by tasks being executed one after another in a specific order. In contrast, Selection and Conditional constructs would involve making decisions in the program flow, and Iteration refers to repeating a set of instructions (a loop).

The term that best describes a program where the actor does things in order is Sequential. In a sequential program, the instructions are executed one after another, in a specific order. This is often seen in the main structure of a program, where statements are executed sequentially unless specified otherwise.

User Robaticus
by
7.6k points