Q. Which pandas method is used to combine two DataFrames along columns?
β
Correct Answer: (A)
concat(axis=1)
Explanation: Using pd.concat() with axis=1 combines DataFrames along columns.