What kind of program construct has lines that are executed in order right after the other.

A sequence

B selection

C iteration

B. Pseudocode pls in need help

A sequence is a program construct that has lines of code that are executed in order, one after the other. For example:

// Pseudocode

// Start of sequence

1. Get user input
2. Process user input
3. Output result

// End of sequence

The program construct that has lines of code executed one after the other is called a sequence. In a sequence, each line of code is executed in the order it appears, from top to bottom.

For example, in pseudocode, a sequence looks like:

```
Line 1: Perform some task
Line 2: Perform another task
Line 3: Perform yet another task
```

In this case, Line 1 will be executed first, followed by Line 2, and finally Line 3. This is the typical behavior of a sequence construct in a program.

The program construct that has lines executed in order one after the other is called a sequence. In a sequence, each line of code is executed in the order it appears in the program. Here's an example of a simple pseudocode sequence:

```
Step 1: Read input from the user.
Step 2: Perform some calculations using the input.
Step 3: Display the results.
Step 4: End the program.
```

In this example, each step or line of code is executed sequentially, with the program moving from one step to the next until it reaches the end.