How can you perform element-wise multiplication of two NumPy arrays a and b?
a * b
np.multiply(a, b)
np.mult(a, b)
a.dot(b)
This question is part of this quiz :