Answer:
The condition must be a type of Boolean expression
Step-by-step explanation:
The condition in an if statement must be boolean that is it must evaluate to true or false
The code block in the if statement will execute when the condition evaluates to true.
Most times the if block is followed by the else code block. The else code block gets executed when the given condition evaluates to false