If you're seeing this message, it means we're having trouble loading external resources on our website.

If you're behind a web filter, please make sure that the domains *.kastatic.org and *.kasandbox.org are unblocked.

Main content

Trace chained conditionals

Problem

The code below awards prizes at a trivia night.
if score >= 100:
    print("You win the grand prize!")
elif score >= 70:
    print("You win a medium prize!")

print("Thank you for playing!")
Which of the following statements accurately describe the behavior of this code?
Choose 2 answers: