What will be displayed by the following code?list1 = [ June 6, 2022 by admin ✪ Choose the correct option.What will be displayed by the following code?list1 = [1, 3]list2 = list1list1[0] = 4print(list2)A. [1, 3]B. [4, 3]C. [1, 4]D. [1, 3, 4] Submit Answer