✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the time complexity of the following Python code?
A = np.zeros(5)
n = np.size(A)
for i in range(n):
A[i] = A[i]**2
for j in range(n):
A[j] = A[i]/5