qobjects = [ { question: "What is a correct syntax for joining tuple1 and tuple2 into tuple3?", options: [ "tuple3 = join(tuple1, tuple2)", "tuple3 = tuple1 + tuple2", "tuple3 = [tuple1, tuple2]" ], correct: 1 }, { question: "What is a legal way to turn this tuple: (1,2,3) into this tuple:(1,2,3,1,2,3)?", options: [ "tuple1 = (1,2,3)
tuple1 = tuple1 * 2
", "tuple1 = (1,2,3)
tuple1.double()
", "tuple1 = (1,2,3)
tuple1.add(_self)
" ], correct: 0 }, { question: "Consider the following code:
tuple1 = ('a', 'b' , 'c')
tuple2 = (1, 2, 3)
tuple3 = tuple2 + tuple1

What will be the value of tuple3?", options: [ "('a', 'b', 'c', 1, 2, 3)", "(1, 2, 3, 'a', 'b', 'c')", "('a', 1, 'b', 2, 'c', 3)" ], correct: 1 } ]