[{"question":"Which data structure would you use to store a collection of unique items?","options":["List","Tuple","Set","Dictionary"],"correct":2},{"question":"What does [x**2 for x in range(4)] produce?","options":["[0, 1, 4, 9]","[1, 4, 9, 16]","[0, 2, 4, 6]","[0, 1, 2, 3]"],"correct":0},{"question":"What method do you use to safely get a value from a dictionary without raising an error?","options":["dict.pull()","dict.fetch()","dict.get()","dict.find()"],"correct":2}]