1.

Question 8: What is the output of the following program?L = [2e-04, 'a', False, 87]T = (6.22, 'boy', True, 554)for i in range(len(L)):if L[i]:L[i] = L[i] + T[i]else:T[i] = L[i] + T[i]break(A) [6.222e-04, ‘aboy’, True, 641](B) [6.2202, ‘aboy’, 1, 641](C) TypeError(D) [6.2202, ‘aboy’, False, 87]

Answer»


Discussion

No Comment Found