A set of statements executed based upon conditional test is called A. looping
B. selective
C. sequence
D. None of the above.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.