Memory Match QuizVersion en ligne Test your knowledge about the Memory Match game in Python! par Denis Peña 1 What is the primary purpose of the Memory Match game? a To match pairs of cards. b To collect the most cards. c To score the highest points. d To finish the game first. 2 Which Python library is commonly used for creating GUI applications? Choose one or more answers a NumPy. b Tkinter. c Pygame. d Flask. 3 What is a common feature of the Memory Match game? a Drawing cards. b Answering trivia questions. c Rolling dice. d Flipping cards to reveal them. 4 What does the 'shuffle' function do in the game? a Ends the game. b Counts the cards. c Randomizes the card order. d Displays the cards. 5 Which method is used to check if two cards match? a Counting their flips. b Comparing their values. c Checking their colors. d Measuring their size. Feedback 1 The goal is reveal all the pairs in the game 2 For our project we've used Pygame, but Tkinter is also a library for GUI applications 3 The fun in this kind of game is to remember where the pairs are situated and then reveal them all 4 The shuffle function mix the card order up 5 We compare if the card we check is equal to the one previously revealed