Post

@PythonPr Answer: (A)
In NumPy, when you add two arrays of the same size, the operation is performed element-wise. This means that each element in the first array is added to the corresponding element in the second array. The first elements are added: (1+4=5)
English

@PythonPr plz post more questions like this.
English

@PythonPr 1. In numpy, arithmetic operators perform element wise operations. 2. The corresponding elements in both 1D array objects aggregate each other and the result is a new array object [5, 7, 9]
3. Alternatively using a ufunc np.add(a, b) offers an alternative solution to the above
English

@PythonPr A) [5,7,9] is the right answer.
Here a,b are array not list so we can perform addition opertaor. ARRAY are different from they can store only one type of data and array are faster and simpler than list.
English



















