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

Certified Associate Developer for Apache Spark Exam - Question 160


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

Show Answer
Correct Answer: AC

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

1 comment
Sign in to comment
Sowwy1Option: A
Apr 10, 2024

A. DataFrame.join()