qobjects = [
{
question: "To remove a file you can import the os module, but which function removes the file?",
options: [
"os.delete()",
"os.drop()",
"os.remove()"
],
correct: 2
},
{
question: "Which os function can be used to delete an entire folder?",
options: [
"os.rmdir()",
"os.rmfolder()",
"os.rmcatalog()"
],
correct: 0
},
{
question: "True or False. To remove a folder with the os module, it cannot contain any files",
options: [
"True",
"False"
],
correct: 0
}
]