Q. Which method is used to combine DataFrames with overlapping columns, filling missing values with NaN?
β
Correct Answer: (D)
combine_first()
Explanation: combine_first() combines two DataFrames, filling missing values in one DataFrame with values from the other.