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

10. The if statements are used when an if statement is present inside another if statement.

8. In Python prior to version 3.10, the switch statement used to be implemented using the ladder.

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 }

3. In Python, the keyword used for selection is the statement.