What is the correct way to calculate the dot product of two NumPy arrays a and b?
dot_product = a x b
dot_product = np.dot(a, b)
dot_product = a.dot(b)
dot_product = np.cross(a, b)
This question is part of this quiz :