qobjects = [
{
question: "What will be the result of the following syntax:mylist = ['apple', 'banana', 'cherry']",
options: [
"apple",
"banana",
"cherry"
],
correct: 2
},
{
fillintheblanks: "exercise_lists1.htm"
},
{
question: "What will be the result of the following syntax:
print(mylist[-1])mylist = ['apple', 'banana', 'cherry', 'orange', 'kiwi']",
options: [
"
print(mylist[1:4])['banana', 'cherry', 'orange']",
"['banana', 'cherry', 'orange', 'kiwi']",
"['cherry', 'orange', 'kiwi']"
],
correct: 0
},
{
fillintheblanks: "exercise_lists7.htm"
},
]