Question 1
What is the result of horizontally stacking two arrays with shapes (2, 3) and (2, 2)?
Question 2
What is the shape of the resulting array after stacking three 1D arrays of shape (4, ) using the stack() function?
Question 3
Which function in numpy is used to vertically stack arrays?
Question 4
When using the concatenate() function, what is the default value for the axis parameter?
Question 5
Which parameter of the concatenate() function in numpy specifies the axis along which arrays will be joined?
Question 6
What is the result of vertically stacking two arrays with shapes (3, 4) and (2, 4)?
Question 7
To horizontally stack arrays, which value should the axis parameter of the concatenate() function be set to?
Question 8
What function in numpy is used to join multiple arrays into a single arrays?
Question 9
Which function in numpy is used to concatenate arrays along a new axis?
Question 10
Which function in numpy is used to concatenate arrays along an existing axis?