A set of statements executed based upon conditional test is called A. looping
B. selective
C. sequence
D. None of the above.
A set of statements executed based upon conditional test is called A. looping
B. selective
C. sequence
D. None of the above.
The correct answer is B. selective.
A set of statements executed based on a conditional test is often referred to as a “selective” statement in programming. This type of structure allows the program to choose which statements to execute based on whether a given condition is true or false, such as in if-else statements. Looping, on the other hand, involves repeated execution of a block of code, and sequence refers to statements that are executed in order, without any condition involved.