281,596 views
38 votes
38 votes
What is the value of grade after this program is executed?

Assume the score is 50.

if score >= 90:
grade = "A"
elif score >= 80:
grade = "B"
elif score >= 70:
grade = "C"
elif score >= 60:
grade = "D"
else:
grade = "F"

User Mohammad Sianaki
by
3.1k points

1 Answer

14 votes
14 votes

Answer:

32 is the correct explanation about this equation

User Reyhn
by
3.0k points