What will the output of this program be if the user inputs 100? INPUT num IF num > 90 THEN OUTPUT "Yellow" ELSE OUTPUT "Green" (1 point)

1 answer

If the user inputs 100, the program checks the condition IF num > 90. Since 100 is greater than 90, the condition evaluates to true. Therefore, the program will execute the THEN clause and output:

Yellow