What is the output of this program if the user inputs 7?

INPUT num

IF num != 7

THEN

OUTPUT "Wow!"

ELSE

OUTPUT "No!"

(1 point)
Responses

an error message

an error message

Wow! No!

Wow! No!

No!

No!

Wow!

Wow!
Skip to navigation

1 answer

If the user inputs 7, the program will evaluate the condition in the IF statement. Since num is equal to 7, the condition num != 7 will be false. Therefore, the program will execute the ELSE block and output "No!".

So, the correct output is:

No!