Associate-Developer-Apache-Spark 試験問題を無料オンラインアクセス
試験コード: | Associate-Developer-Apache-Spark |
試験名称: | Databricks Certified Associate Developer for Apache Spark 3.0 Exam |
認定資格: | Databricks |
無料問題数: | 179 |
更新日: | 2025-09-03 |
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?
The code block displayed below contains an error. The code block should return DataFrame transactionsDf, but with the column storeId renamed to storeNumber. Find the error.
Code block:
transactionsDf.withColumn("storeNumber", "storeId")
The code block shown below should return a one-column DataFrame where the column storeId is converted to string type. Choose the answer that correctly fills the blanks in the code block to accomplish this.
transactionsDf.__1__(__2__.__3__(__4__))
Which of the following code blocks returns a DataFrame showing the mean value of column "value" of DataFrame transactionsDf, grouped by its column storeId?