QUESTION IMAGE
Question
what will be the output when the following code is run?
score = 60
if (score >= 100):
print(\you have skills\)
elif (score >= 75):
print(
oom for improvement\)
else:
print(\this game isnt for you\)
select one:
a. you have skills
b. this game isnt for you
c. nothing will be printed
d. room for improvement
Step1: Check first condition
Check if \( score >= 100 \). Here \( score = 60 \), so \( 60>=100 \) is \( False \).
Step2: Check second condition
Check if \( score >= 75 \). Since \( 60>=75 \) is \( False \).
Step3: Execute else block
Since both \( if \) and \( elif \) conditions are \( False \), the \( else \) block \( print("This game isn't for you") \) is executed.
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
B. This game isn't for you