Which of these lines of pseudocode will correctly test whether the person is over 21 and under 65?(1 point)Responsesif age > 21 AND age < 65if age > 21 AND age < 65if age > 21 OR age <65if age > 21 OR age <65if age < 21 OR 65if age < 21 OR 65if age NOT = 21 OR 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.