Python Multiple Choice Questions (Test 4) September 10, 2024 by Naman Python Multiple Choice Question (Test 4) 1 / 11 What will be the output after the following statements?x = [25, 'Today', 53, 'Sunday', 15]x.reverse()print(x) ['Today', 'Sunday', 15, 25, 53] [15, 'Sunday', 53, 'Today', 25] [15, 25, 53, 'Sunday', 'Today'] [15, 25, 53, 'Today', 'Sunday'] 2 / 11 What will be the output after the following statements?x = ['25', 'Today', '53', 'Sunday', '15']x.sort()print(x) ['Today', 'Sunday', '15', '25', '53'] ['Sunday', 'Today', '15', '25', '53'] ['15', '25', '53', 'Sunday', 'Today'] ['15', '25', '53', 'Today', 'Sunday'] 3 / 11 What will be the output after the following statements?x = [25, 14, 53, 62, 11]x.sort()print(x) . [11, 14, 25, 53, 62] [25, 14, 53, 62, 11] . [62, 53, 25, 14, 11] [25, 53, 62, 14, 11] 4 / 11 What will be the output after the following statements?x = [5, 4, 3, 2, 1]x.reverse()print(x) [0, 1, 2, 3, 4, 5] [0, 5, 4, 3, 2, 1] [5, 4, 3, 2, 1, 0] [1, 2, 3, 4, 5] 5 / 11 What will be the output after the following statements?x = [5, 4, 3, 2, 1]y = [10, 5, 0]y.extend(x)print(y) [5, 4, 3, 2, 1, 10, 5, 0] [10, 5, 0, 5, 4, 3, 2, 1] [5, 4, 3, 2, 1] [10, 5, 0] 6 / 11 What will be the output after the following statements?x = [5, 4, 3, 2, 1]y = [10, 5, 0]x.extend(y)print(y) [5, 4, 3, 2, 1, 10, 5, 0] [] [10, 5, 0, 5, 4, 3, 2, 1] [10, 5, 0] 7 / 11 What will be the output after the following statements?x = [5, 4, 3, 2, 1]y = [0, 5, 10]x.extend(y)print(x) [5, 4, 3, 2, 1, 0, 5, 10] [] [5, 4, 3, 2, 1] .[0, 5, 10, 5, 4, 3, 2, 1] 8 / 11 What will be the output after the following statements?x = [5, 4, 3, 2, 1]x.extend(x)print(x) [5, 4, 3, 2, 1] [] [1, 2, 3, 4, 5] [5, 4, 3, 2, 1, 5, 4, 3, 2, 1] 9 / 11 What will be the output after the following statements?x = [5, 4, 3, 2, 1]print(x.index(1)) 4 3 2 1 10 / 11 What will be the output after the following statements?x = [5, 4, 3, 2, 1]print(x.pop(3)) 4 3 2 1 11 / 11 What will be the output after the following statements?x = [5, 4, 3, 2]x.remove(2)print(x) [5, 3, 2] [5, 4, 3] [5, 4, 2] . [3, 2] Your score isThe average score is 0% 0% Restart quiz