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

1 answer

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.