What is the result of the following lines of code?
a=np.array([1,1,1,1,1]) b=np.array([2,2,2,2,2]) a*b
What is the result of the following lines of code?
a=np.array([0,1]) b=np.array([1,0]) np.dot(a,b)
Is the following operation allowed with numpy arrays?
a=np.array([1,1,1,1,1]) a 10