Question 7
Which of the options will be the correct output for the following code snippet?
import numpy as npx = np.array( [[5, 4 ], [3, 8 ], [2, 0 ], [9, 6 ]])from sklearn.preprocessing import add_dummy_featurex_new = add_dummy_feature(x)print(x_new)