qobjects = [
{
question: "After opening a file with the open() function, which method can be used to read the content?",
options: [
"list()",
"read()",
"show()"
],
correct: 1
},
{
question: "To read only one line, we can use another method, which one?",
options: [
"readline()",
"lread()",
"readl()"
],
correct: 0
},
{
question: "True or False.
If you call the readline() method two times, it will return the two first lines.",
options: [
"True",
"False"
],
correct: 0
}
]