Databricks Certified Associate Developer for Apache Spark 3.0 Exam Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 Question # 21 Topic 3 Discussion

Databricks Certified Associate Developer for Apache Spark 3.0 Exam Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 Question # 21 Topic 3 Discussion

Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 Exam Topic 3 Question 21 Discussion:
Question #: 21
Topic #: 3

The code block shown below should return an exact copy of DataFrame transactionsDf that does not include rows in which values in column storeId have the value 25. Choose the answer that

correctly fills the blanks in the code block to accomplish this.


A.

transactionsDf.remove(transactionsDf.storeId==25)


B.

transactionsDf.where(transactionsDf.storeId!=25)


C.

transactionsDf.filter(transactionsDf.storeId==25)


D.

transactionsDf.drop(transactionsDf.storeId==25)


E.

transactionsDf.select(transactionsDf.storeId!=25)


Get Premium Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.