List Questions 1. what is the output of the code? list1 = [12, 32, 65, 26, 80, 10] list1.sort() print(list1) 2. list1 = [12, 32, 65, 26, 80, 10] sorted(list1) print(list1) 3. list1=[1,2,3,4,5] print(list1[len(list1)-1) 4. Consider the following list myList. What will be the elements of myList after the following two operations : myList=[10,20,30,40] i. myList.append([50,60]) ...