Exercise: NUMPY Slicing ArraysConsider the following code:import numpy as nparr = np.array([1, 2, 3, 4, 5, 6, 7])print(arr[:2])What will be the printed result? [1] [1 2] [1 2 3] [3 4 5 6 7] Submit Answer »