qobjects = [
{
question: "What does the self parameter represent in a Python class?",
options: [
"The class name",
"A reference to the current instance of the class",
"A global variable"
],
correct: 1
},
{
question: "Where must the self parameter be placed in a method?",
options: [
"As the last parameter",
"As the first parameter",
"Anywhere in the parameter list"
],
correct: 1
},
{
question: "Can you use a different name instead of self?",
options: [
"No, you must always use 'self'",
"Yes, but it's strongly recommended to use 'self' as it's the convention"
],
correct: 1
}
]