Short Quiz 3 – List Welcome to your Short Quiz 3 – List 1. What is a List Collection of same types of item Collection of different types of item Collection of unique elements None of these 2. What is a List Unique elements Distinct elements Both A and B None of these 3. What is the output of following line of code list_1 = [1,2,3,4,5,'hi',6,7]print(list_1) [1,2,3,4,5,'hi',6,7] [1,2,3,4,5,6,7] Error 4. What is the output of following line of code list_1 = [1,2,3,4,5,'hi',6,7]list_1[:] [1,2,3,4,5,'hi',6,7] [1,2,3,4,5,6,7] Error 5. What is the output of following line of code list_1 = [1,2,3,4,5,'hi',6,7]list_1[2:5] [1,2,3,4,5,'hi',6,7] [2,3,4,5] [3,4,5,'hi'] [3,4,5] 6. What is the output of following line of code list_1 = [1,2,3,4,5,'hi',6,7]list_1[::-1] [1,2,3,4,5,'hi',6,7] [7,6,'hi',5,4,3,2,1] [3,4,5,'hi'] Error 7. What is the output of following line of code list_1 = [1,2,3,4,5,'hi',6,7]list_1[0:] = [11,12,13]list_1 [1,2,3,4,5,'hi',6,7] [11,12,13,4,5,'hi',6,7] [11,12,13] Error 8. What is the output of following line of code list_1 = [1,2,3,4,5,'hi',6,7]list_1[4:8] = [11,12,13,14]list_1 [1,2,3,4,5,'hi',6,7] [11,12,13,14,5,'hi',6,7] [1,2,3,4,11,12,13,14] Error 9. What is the output of following line of code list_1 = [1,2,3,4,5,'hi',6,7]list_1[0:2] = [11,12,13,14]list_1 [1,2,3,4,5,'hi',6,7] [11,12,13,14,5,'hi',6,7] [11,12,13,14,3,4,5,'hi',6,7] Error 10. What is the output of following line of code list_1 = [1,2,3,4,5]list_2 = [i*i for i in list_1]list_2 [1, 2, 3, 4, 5] [1, 4, 9, 16, 25] [1*1, 2*2, 3*3, 4*4, 5*5] Error 11. What is the output of following line of code list_1 = [1,2,3,4,5]list_1.append([6,7,8])list_1 [1, 2, 3, 4, 5] [1, 2, 3, 4, 5, 6, 7, 8] [1, 2, 3, 4, 5, [6, 7, 8]] None of these 12. What is the output of following line of code list_1 = [1,2,3,4,5]list_1.extend([6,7,8])list_1 [1, 2, 3, 4, 5] [1, 2, 3, 4, 5, 6, 7, 8] [1, 2, 3, 4, 5, [6, 7, 8]] None of these 13. What is the output of following line of code list_1 = [1,2,3,4,5]list_1.insert(2,6)list_1 [1, 2, 3, 4, 5, 6] [1, 2, 6, 3, 4, 5] [1, 2, 3, 4, 5, 2] None of these 14. What is the output of following line of code list_1 = [1,2,3,4,5]list_1.pop()list_1 [1, 2, 3, 4, 5] [1, 2, 3, 4] [2, 3, 4, 5] None of these 15. What is the output of following line of code list_1 = [1,2,3,4,5,4]list_1.remove(4)list_1 [1, 2, 3, 4, 5] [1, 2, 3, 5, 4] [1, 2, 3, 5] None of these