pinky502 pinky502 24-02-2020 Mathematics contestada What is the output of the following Python program? list1 = [2, 3, 4] list2 = [1, 5] list3 = [0] list3 = list2 + list1 print(list3) A. [0, 1, 5, 2, 3, 4] B. [1, 5, 2, 3, 4] C. [2, 3, 4, 1, 5] D. None of the above