The following code displays ___________.
temperature = 

Loading

Choose the correct option.

The following code displays ___________.
temperature = 50
if temperature >= 100:
    print(“too hot”)
elif temperature <= 40:
    print(“too cold”)
else:
    print(“just right”)

A. too hot
B. too cold
C. just right
D. too hot too cold just right

Leave a Comment