qobjects = [ { question: "What is a correct syntax for loading a .json file into a DataFrame?", options: [ "df = pd.json('data.json')", "df = pd.read_json('data.json')", "df = pd.load('data.json')" ], correct: 1 }, { question: "JSON objects have the same format as a certain Python object, which one?", options: [ "Python Sets", "Python Dictionaries", "Python Tuples" ], correct: 1 }, { question: "True or False. Python Dictionaries can be loaded directly into a Pandas DataFrame.", options: [ "True", "False" ], correct: 0 } ]