Exam Name: | Databricks Certified Associate Developer for Apache Spark 3.0 Exam | ||
Exam Code: | Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 Dumps | ||
Vendor: | Databricks | Certification: | Databricks Certification |
Questions: | 180 Q&A's | Shared By: | renesmae |
The code block displayed below contains an error. The code block should combine data from DataFrames itemsDf and transactionsDf, showing all rows of DataFrame itemsDf that have a matching
value in column itemId with a value in column transactionsId of DataFrame transactionsDf. Find the error.
Code block:
itemsDf.join(itemsDf.itemId==transactionsDf.transactionId)
Which of the following code blocks performs a join in which the small DataFrame transactionsDf is sent to all executors where it is joined with DataFrame itemsDf on columns storeId and itemId,
respectively?
Which of the following code blocks selects all rows from DataFrame transactionsDf in which column productId is zero or smaller or equal to 3?
Which of the following code blocks returns a DataFrame that is an inner join of DataFrame itemsDf and DataFrame transactionsDf, on columns itemId and productId, respectively and in which every
itemId just appears once?