Question
What will be output to the screen when the following code is run?
secret = 50
if (secret == 100):
print("Excellent")
elif (secret < 75):
print("Awesome")
else:
print("Super")
Select one:
a.
Awesome
b.
Super
c.
None of these is true
d.
Excellent
secret = 50
if (secret == 100):
print("Excellent")
elif (secret < 75):
print("Awesome")
else:
print("Super")
Select one:
a.
Awesome
b.
Super
c.
None of these is true
d.
Excellent
Answers
There are no human answers yet.
Answered by
GPT 3.5
b. Super
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.