Free Databricks Certified Associate Developer for Apache Spark 3.0 Exam Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 Exam Practice Test
Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 Exam Features
In Just $59 You can Access
- All Official Question Types
- Interactive Web-Based Practice Test Software
- No Installation or 3rd Party Software Required
- Customize your practice sessions (Free Demo)
- 24/7 Customer Support
Total Questions: 180
-
The code block displayed below contains an error. When the code block below has executed, it should have divided DataFrame transactionsDf into 14 parts, based on columns storeId andtransactionDate (in this order). Find the error.Code block:transactionsDf.coalesce(14, ('storeId', 'transactionDate'))
Answer: 2 Next Question -
Which of the following code blocks performs an inner join between DataFrame itemsDf and DataFrame transactionsDf, using columns itemId and transactionId as join keys, respectively?
Answer: 3 Next Question -
Which of the following code blocks reads in the parquet file stored at location filePath, given that all columns in the parquet file contain only whole numbers and are stored in the most appropriateformat for this kind of data?
Answer: 4 Next Question -
Which of the following code blocks produces the following output, given DataFrame transactionsDf?Output:1. root2. |-- transactionId: integer (nullable = true)3. |-- predError: integer (nullable = true)4. |-- value: integer (nullable = true)5. |-- storeId: integer (nullable = true)6. |-- productId: integer (nullable = true)7. |-- f: integer (nullable = true)DataFrame transactionsDf:1. +-------------+---------+-----+-------+---------+----+2. |transactionId|predError|value|storeId|productId| f|3. +-------------+---------+-----+-------+---------+----+4. | 1| 3| 4| 25| 1|null|5. | 2| 6| 7| 2| 2|null|6. | 3| 3| null| 25| 3|null|7. +-------------+---------+-----+-------+---------+----+
Answer: 4 Next Question -
Which of the following statements about executors is correct?
Answer: 2 Next Question -
Which of the following statements about the differences between actions and transformations is correct?
Answer: 5 Next Question -
Which of the following code blocks removes all rows in the 6-column DataFrame transactionsDf that have missing data in at least 3 columns?
Answer: 2 Next Question -
The code block displayed below contains an error. The code block should count the number of rows that have a predError of either 3 or 6. Find the error.Code block:transactionsDf.filter(col('predError').in([3, 6])).count()
Answer: 3 Next Question -
The code block shown below should set the number of partitions that Spark uses when shuffling data for joins or aggregations to 100. Choose the answer that correctly fills the blanks in the codeblock to accomplish this.spark.sql.shuffle.partitions__1__.__2__.__3__(__4__, 100)
Answer: 1 Next Question -
Which of the following statements about broadcast variables is correct?
Answer: 3 Next Question
Total Questions: 180