qobjects = [
{
question: "What is the built-in Python module for creating virtual environments?",
options: [
"virt",
"environ",
"vrlnv",
"venv"
],
correct: 3
},
{
question: "What is a correct command to deactivate a virtual environment?",
options: [
"exit",
"deactivate",
"stop",
"break"
],
correct: 1
},
{
question: "What is a correct command to create a virtual environment called 'mytest'?",
options: [
"python -m venv mytest",
"python -m create mytest",
"python create mytest",
"python create venv mytest"
],
correct: 0
}
]