Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam Certified Associate Developer for Apache Spark All Questions

View all questions & answers for the Certified Associate Developer for Apache Spark exam

Exam Certified Associate Developer for Apache Spark topic 1 question 163 discussion

The code block shown below should return a new DataFrame that is the result of an inner join between DataFrame storesDF and DataFrame employeesDF on column storeId and column employeeId. Choose the response that correctly fills in the numbered blanks within the code block to complete this task.

Code block:

storesDF.join(employeesDF, [__1__ == __2__, __3__ == __4__])

  • A. 1. storesDF.storeId
    2. storesDF.employeeId
    3. employeesDF.storeId
    4. employeesDF.employeeId
  • B. 1. col("storeId")
    2.col("storeId")
    3.col("employeeId")
    4. col("employeeId")
  • C. 1. storeId
    2. storeId
    3. employeeId
    4. employeeId
  • D. 1. col("storeId")
    2. col("employeeId")
    3. col("employeeId")
    4. col(''storeId")
  • E. 1. storesDF.storeId
    2. employeesDF.storeId
    3. storesDF.employeeId
    4. employeesDF.employeeId
Show Suggested Answer Hide Answer
Suggested Answer: E 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Sowwy1
7 months, 2 weeks ago
E. 1. storesDF.storeId 2. employeesDF.storeId 3. storesDF.employeeId 4. employeesDF.employeeId
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...