Q36Single correct3 Marks7 Aug 2022What is the output of the following snippet of code? ``` L = [x // 2 if x % 2 == 0 else x * 2 for x in range(1, 10)] print(L) ```A[2, 1, 6, 2, 10, 3, 14, 4, 18]B[8, 4, 1, 8, 2, 12, 3, 16, 4]C[1, 2, 3, 4, 5, 6, 7, 8, 9]D[2, 4, 6, 8, 10, 12, 14, 16, 18]