
Ultimate access to all questions.
Which of the following code blocks writes the DataFrame storesDF to the file path filePath as Parquet format, overwriting any existing files at that location?
A
storesDF.write(filePath, mode = “overwrite”)
B
storesDF.write().mode(“overwrite”).parquet(filePath)
C
storesDF.write.mode(“overwrite”).parquet(filePath)
D
storesDF.write.option(“parquet”, “overwrite”).path(filePath)
E
storesDF.write.mode(“overwrite”).path(filePath)