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
1 answer
b. Super