COMPUTER SCIENCE: ASSIGNMENT – LIST CLASS XI Q1. MCQ 1. What is the output of the following list function? sampleList = [10, 20, 30, 40, 50] sampleList.pop() print(sampleList) sampleList.pop(2) print(sampleList) a. [20, 30, 40, 50] [10, 20, 40] b. [10, 20, 30, 40] [10, 20, 30, 50] c. [10, 20, 30, 40] [10, 20, 40] 2. What is the output of the following code list1 = ['xyz', 'zara', 'PYnative'] print (max(list1)) a. PYnative b. zara 3. What is the output of the following code my_list = ["Hello", "Python"] print("-".join(my_list)) a. HelloPython- b. Hello-Python c. -HelloPython 4. In Python, list is mutable a. False b. True 5. What is the output of the following list assignment aList = [4, 8, 12, 16] aList[1:4] = [20, 24, 28] print(aList) a. [4, 20, 24, 28, 8, 12, 16] b. [4, 20, 24, 28] 6. Select all the correct options to join two lists in Python listOne = ['a', 'b', 'c...