Question What will the output of this program be if the user enters 25? INPUT num IF num > 20 AND num < 22 THEN OUTPUT "Just right." ELSE OUTPUT "Invalid." (1 point)

1 answer

The program checks if the user-provided input (num) is greater than 20 and less than 22.

If the user enters 25, the condition num > 20 AND num < 22 evaluates as follows:

  • 25 > 20 is true
  • 25 < 22 is false

Since both conditions must be true for the entire expression to be true and one of them is false, the overall condition is false.

Therefore, the program will execute the ELSE branch and output:

"Invalid."