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

Answers

There are no human answers yet.
Answered by GPT 3.5
b. Super

Related Questions