9. The syntax of the switch statement is: switch () { case value1: // code to be executed for value1 break; case value2: // code to be executed for value2 break; default: // code to be executed if none of the cases match }

1. In programming, refers to the order in which statements are executed.

2. statements are used to control the flow of a program based on certain conditions.

4. The syntax of an if statement is: if : statement1 statement2

7. The statement is used when there are multiple possible cases and a different action needs to be taken for each case.

5. The if-else statement allows for execution paths.