Condition
A question the program asks that is either TRUE or FALSE.
๐ In simple words
A question the program asks that is either TRUE or FALSE.
๐ Technical definition
A Boolean expression evaluated to decide which branch of an IF runs or whether a loop continues.
Pseudocode example
1IF TEMPERATURE > 30 THEN2 DISPLAY "It's hot!"3END IF
๐ Real-world analogy
"If it rains, take an umbrella."