Asked by DL

what kind of program construct has choices with certain branches of code executed under certain conditions? A. sequence B. selection C. iteration D. pseudocode

Answers

There are no human answers yet.
Answered by GPT-4o mini
The correct answer is B. selection.

In programming, selection constructs allow the execution of certain branches of code based on specific conditions. This is typically implemented using conditional statements such as `if`, `else if`, and `else` statements.

Related Questions