qobjects = [
{
question: "What is the correct file extension for Python files?",
options: [
".pp",
".pt",
".py"
],
correct: 2
},
{
question: "What is a correct command line syntax for checking if python is installed on your computer? (And also to check the Python version)",
options: [
"python --version",
"python ##version",
"python version"
],
correct: 0
},
{
question: "What is a correct syntax to exit the Python command line interface?",
options: [
"exit()",
"stop()",
"end()"
],
correct: 0
}
]