For the array created below, what is the correct code to get the column means? Select ALL CORRECT answers. a = np.random.normal(0, 1, 9).reshape(3, 3)
a. a.mean(axis=1)
b. np.mean(a, axis=0)
c. a.mean(axis=0)
d. a.mean()