Certified Data Engineer Professional Exam QuestionsBrowse all questions from this exam

Certified Data Engineer Professional Exam - Question 32


The data engineering team maintains the following code:

Assuming that this code produces logically correct results and the data in the source tables has been de-duplicated and validated, which statement describes what will occur when this code is executed?

Show Answer
Correct Answer: B

This code reads data from three source tables, joins them, and then writes the result to the 'enriched_itemized_orders_by_account' table using the '.mode("overwrite")' method. The '.mode("overwrite")' indicates that the existing table will be completely replaced with the new data generated from the current values in the source tables. Thus, the entire 'enriched_itemized_orders_by_account' table will be overwritten using the current valid version of data in each of the three tables referenced in the join logic.

Discussion

4 comments
Sign in to comment
sturcuOption: B
Oct 16, 2023

B is correct

Jay_98_11Option: B
Jan 13, 2024

correct

AziLaOption: B
Jan 28, 2024

Correct Ans is B

imatheushenriqueOption: B
Jun 4, 2024

B is correct