
Ultimate access to all questions.
Which code block demonstrates an incorrect implementation of a stream-static join between a streaming DataFrame streamingDF and a static table userLookup?
A
userLookup.join(streamingDF, ["user_id"], how="right")_
B
streamingDF.join(userLookup, ["user_id"], how="inner")_
C
userLookup.join(streamingDF,
D
userLookup.join(streamingDF, ["user_id"], how="left")_