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