Skill level calculator (gap-fill)

Gap-Fill Question

Outline

The algorithm should output the skill level for the user based upon their inputted score.

Details

  • A score between 0 and 9 makes them a novice
  • A score between 10 and 19 makes them an improver
  • A score between 20 and 29 makes them an expert
  • A score of 30 makes them a master

Instructions:

Fill in the gaps in the algorithm below. Choose from the dropdown options or type your answers in the text fields.

Complete the Algorithm

score =
(input("Enter your score: "))
score >= 0 and score
10: print("You are a novice") elif score
10 and score < 20: print("You are an improver") elif score >= 20
score < 30: print("You are an expert") elif score
30: print("You are a master")

Powered by CodingQuestion.com