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