What does element-wise multiplication do to two NumPy arrays of the same shape?
It appends the second array's elements after the first array's elements.
It computes row-by-column sums according to matrix multiplication rules.
It multiplies each element by the element at the same position in the other array.
It multiplies every element of the first array by every element of the second.