MCPcopy Create free account
hub / github.com/ndleah/python-mini-project / easy_question

Function easy_question

GK_Maestro/question_bank.py:2–14  ·  view source on GitHub ↗
(num)

Source from the content-addressed store, hash-verified

1# Store all the easy questions to be asked, and returns the dictionary
2def easy_question(num):
3 easy_question_bank = {
4 2: "COVID19 originated from which country?",
5 3: "Which animal is known as the 'Ship of the Desert'?",
6 4: "How many years are there in one Millenium?",
7 8: "Who painted the Mona Lisa?",
8 9: "What is the largest country in the world?",
9 14: "What does the AC button on a calculator stand for?",
10 15: "What is the tallest building in the world?",
11 16: "Which one of these is a fish: a whale, a shark or a dolphin?",
12 }
13
14 return easy_question_bank[num]
15
16# Store all the hard questions to be asked, and returns the dictionary
17def hard_question(num):

Callers 1

generate_questionFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected