✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following code. What will be the output if score = 85?
def get_grade ( score ): if score > 50: return " Pass " elif score > 75: return " Distinction " elif score > 90: return " Outstanding " return " Fail "print ( get_grade (85) )