In the ques:
Concat 2 arrays horizontally,
a = np.arange(1,17).reshape(4,4)
b = np.arange(17,33).reshape(4,4)
for this we use concatenate function but if we use axis=0 than it is column wise stacking ie vertical stacking,
right ans is option a and c ??
.