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

1 answer

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