What are the three necessary parts of an if statement?

1. If, a variable, a semi-colon 2. If, a print statement, a colon 3. If, a condition, a colon 4. If, a print statement, a semi- colon

The correct answer is option 3.

The three necessary parts of an if statement are:
1. "if" keyword: It specifies the beginning of the if statement.
2. Condition: It is a boolean expression that determines whether the statements inside the if block will be executed or not.
3. Colon: It is used to indicate the start of the block of code that will be executed if the condition is true.