The correct line of pseudocode for testing whether a person is over 21 and under 65 is:
if age > 21 AND age < 65
This statement checks both conditions: the age must be greater than 21 and also less than 65.
1 answer
The correct line of pseudocode for testing whether a person is over 21 and under 65 is:
if age > 21 AND age < 65
This statement checks both conditions: the age must be greater than 21 and also less than 65.