Under what circumstances will the indent line of code immediately after and if statement be executed?

1. If the condition is false
2. If the condition is true
3. If the line begins with a #
4. If the line contains a variable

The indent line of code immediately after an if statement will be executed only if the condition is true.