Concept:Conditional statements allow a program to choose different actions based on conditions.Explanation:Conditional statements, such as "if" statements, check whether a condition is true or false.Based on the result, the program makes a decision and executes the appropriate block of code.Therefore, they are used to make decisions in a program.Answer:B. make decisions.