A two-dimensional numpy array х is defined as: X = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) Which of the following code snippets would return the sum of the last row of X ?
* X[:, 2].sumo
X[3].sumo
X[-1,:].sumo
X[:,-1].sumo