Exam Certified Associate Developer for Apache Spark All QuestionsBrowse all questions from this exam
Question 160

Which of the following operations can be used to perform a left join on two DataFrames?

    Correct Answer: C

    DataFrame.merge() is the correct operation to perform a left join on two DataFrames. The merge() method provides a parameter called 'how' where you can specify the type of join; using 'how=left' will execute a left join.

Discussion
Sowwy1Option: A

A. DataFrame.join()