Answer:
Yes, this statement is true. The use of selection statements, commonly referred to as control flow statements, enables a program to select various execution paths based on the result of an expression. To do this, a condition or expression is tested, and if it is true, one block of code is executed; if it is false, a different block of code is executed. The if statement and the switch statement are the two most common sorts of selection statements.