Week 2 Assessment: NumPy
1. What is broadcasting in NumPy?
2. np.array([1,2,3]).shape returns?
3. Create a 3x3 identity matrix using NumPy.
4. Compute mean and std of array [1,2,3,4,5].
5. Which is faster: NumPy vectorized op or Python loop?