Databricks Certified Associate Developer for Apache Spark 3.0はベンダー公式の認定資格として、スキルの証明に高い信頼性があります。CertJukenのAssociate-Developer-Apache-Spark練習問題は公式の出題範囲に沿って構成されており、資格取得への近道となります。
Databricks Associate-Developer-Apache-Spark 試験概要:
| 認定ベンダー: | Databricks |
|---|---|
| 試験名: | Databricks Certified Associate Developer for Apache Spark 3.0 Exam |
| 試験番号: | Associate-Developer-Apache-Spark |
| 合格点: | 70% |
| 関連資格: | Databricks Certified Data Engineer Associate Databricks Certified Data Engineer Professional |
| 試験形式: | 選択式(単一選択), 選択式(複数選択) |
| 試験時間: | 120 分 |
| 対応言語: | English |
| 認定の有効期間: | 2 years |
| 出題数: | 45-60 |
| 受験料: | $200 USD |
| 推奨トレーニング: | Databricks Academy - Apache Sparkの基本 |
| 受験申し込み: | Databricks認定ポータル |
| サンプル問題: | ![]() |
| 受験方法: | オンライン監視付き試験 |
| 前提条件: | Apache Sparkの実務経験6ヶ月以上、およびPythonまたはScalaの基礎知識を推奨 |
| 公式シラバスのURL: | https://www.databricks.com/learn/certification |
Databricks Associate-Developer-Apache-Spark 試験シラバストピック:
| セクション | 目標 |
|---|---|
| トピック 1: Spark DataFrame API | - DataFrameの操作
|
| トピック 2: データの取り込みとストレージフォーマット | - データの読み込みと書き込み
|
| トピック 3: Apache Sparkのアーキテクチャと基本 | - Sparkアーキテクチャの概要
|
| トピック 4: パフォーマンスと最適化の基本 | - 最適化の概念
|
| トピック 5: Spark SQL | - SparkにおけるSQLクエリ
|
| トピック 6: 変換とアクション | - コアなRDD/DataFrame操作
|
Databricks Certified Associate Developer for Apache Spark 3.0に関するよくある質問
Associate-Developer-Apache-Sparkは、Databricksが実施する「Databricks Certified Associate Developer for Apache Spark 3.0」を取得するための認定試験です。認定レベルはアソシエイトで、実務に即した知識とスキルが問われます。Databricks Certified Data Engineer Associate、Databricks Certified Data Engineer Professionalなどの関連認定へのステップとしても位置づけられており、キャリアアップを目指す方に広く選ばれています。CertJukenの練習問題を活用すれば、試験の全体像を把握しながら計画的に対策を進められます。
Associate-Developer-Apache-Spark試験の問題数は45-60、制限時間は120 分です。1問あたりに使える時間を意識すると、序盤で時間を使いすぎないペース配分が重要になります。見直しの時間を確保するためにも、CertJukenの模擬試験で時間を計りながら解く練習を重ね、本番と同じ時間感覚を身につけておくと安心です。
Associate-Developer-Apache-Spark試験の合格基準点は70%で、受験料は$200 USDです。万が一不合格になった場合、再受験には再度全額の受験料が必要になります。そのため、本番の前にCertJukenの練習問題で安定して合格点を超えられるかを確認してから受験することをおすすめします。
はい。CertJukenではAssociate-Developer-Apache-Spark練習問題の無料サンプル(PDFデモ)を用意しており、内容や使い勝手を確かめてから購入を判断できます。購入後は365日間の無料更新が付き、更新期間の終了後は50%割引で継続更新を利用できます。
CertJukenでは「返金保証」を用意しています。購入後60日以内にAssociate-Developer-Apache-Spark試験を受験して不合格だった場合、受験票の写しと公式のスコアレポート(Score Report)のPDFを試験後2日以内に提出すれば、7日以内に全額返金の手続きが完了します。なお、受験者名と購入時の支払者名が一致している必要があり、購入から3日以内の受験や、実際に受験しなかった場合は対象外です。返金の代わりに、同等の試験対策教材2つを無料で受け取り、購入済み製品の更新サービスを継続する選択も可能です。商品は購入後すぐにダウンロードでき、メールでも1分以内にお届けします。2時間経っても届かない場合はカスタマーサポートまでご連絡ください。インストールできるパソコンの台数に制限はありません。
Associate-Developer-Apache-Spark試験の出題範囲は6の分野に分かれています。主な分野はパフォーマンスと最適化の基本、データの取り込みとストレージフォーマット、Spark DataFrame APIです。各分野の詳細な出題項目は、このページ上部の出題範囲一覧で確認できます。
Databricks Certified Associate Developer for Apache Spark 3.0 認定 Associate-Developer-Apache-Spark 試験問題:
Which of the following code blocks reads in the JSON file stored at filePath, enforcing the schema expressed in JSON format in variable json_schema, shown in the code block below?
Code block:
1.json_schema = """
2.{"type": "struct",
3. "fields": [
4. {
5. "name": "itemId",
6. "type": "integer",
7. "nullable": true,
8. "metadata": {}
9. },
10. {
11. "name": "supplier",
12. "type": "string",
13. "nullable": true,
14. "metadata": {}
15. }
16. ]
17.}
18."""
- A. spark.read.schema(json_schema).json(filePath)
1.schema = StructType.fromJson(json.loads(json_schema))
2.spark.read.json(filePath, schema=schema) - B. spark.read.json(filePath, schema=spark.read.json(json_schema))
- C. spark.read.json(filePath, schema=schema_of_json(json_schema))
- D. spark.read.json(filePath, schema=json_schema)
正解:A 🗳️
解説: (CertJuken メンバーにのみ表示されます)
Which of the following code blocks writes DataFrame itemsDf to disk at storage location filePath, making sure to substitute any existing data at that location?
- A. itemsDf.write().parquet(filePath, mode="overwrite")
- B. itemsDf.write.mode("overwrite").parquet(filePath)
- C. itemsDf.write.option("parquet").mode("overwrite").path(filePath)
- D. itemsDf.write.mode("overwrite").path(filePath)
- E. itemsDf.write(filePath, mode="overwrite")
正解:B 🗳️
解説: (CertJuken メンバーにのみ表示されます)
Which of the following code blocks returns a DataFrame where columns predError and productId are removed from DataFrame transactionsDf?
Sample of 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.+-------------+---------+-----+-------+---------+----+
- A. transactionsDf.drop("predError", "productId", "associateId")
- B. transactionsDf.drop(["predError", "productId", "associateId"])
- C. transactionsDf.withColumnRemoved("predError", "productId")
- D. transactionsDf.drop(col("predError", "productId"))
- E. transactionsDf.dropColumns("predError", "productId", "associateId")
正解:E 🗳️
解説: (CertJuken メンバーにのみ表示されます)
Which of the following code blocks displays various aggregated statistics of all columns in DataFrame transactionsDf, including the standard deviation and minimum of values in each column?
- A. transactionsDf.summary()
- B. transactionsDf.summary("count", "mean", "stddev", "25%", "50%", "75%", "max").show()
- C. transactionsDf.agg("count", "mean", "stddev", "25%", "50%", "75%", "min").show()
- D. transactionsDf.agg("count", "mean", "stddev", "25%", "50%", "75%", "min")
- E. transactionsDf.summary().show()
正解:E 🗳️
解説: (CertJuken メンバーにのみ表示されます)
The code block shown below should return all rows of DataFrame itemsDf that have at least 3 items in column itemNameElements. Choose the answer that correctly fills the blanks in the code block to accomplish this.
Example of DataFrame itemsDf:
1.+------+----------------------------------+-------------------+------------------------------------------+
2.|itemId|itemName |supplier |itemNameElements |
3.+------+----------------------------------+-------------------+------------------------------------------+
4.|1 |Thick Coat for Walking in the Snow|Sports Company Inc.|[Thick, Coat, for, Walking, in, the, Snow]|
5.|2 |Elegant Outdoors Summer Dress |YetiX |[Elegant, Outdoors, Summer, Dress] |
6.|3 |Outdoors Backpack |Sports Company Inc.|[Outdoors, Backpack] |
7.+------+----------------------------------+-------------------+------------------------------------------+ Code block:
itemsDf.__1__(__2__(__3__)__4__)
- A. 1. filter
2. count
3. itemNameElements
4. >=3 - B. 1. select
2. size
3. "itemNameElements"
4. >3 - C. 1. filter
2. size
3. "itemNameElements"
4. >=3
(Correct) - D. 1. select
2. count
3. "itemNameElements"
4. >3 - E. 1. select
2. count
3. col("itemNameElements")
4. >3
正解:C 🗳️
解説: (CertJuken メンバーにのみ表示されます)




铃木**
Ioka
福永**
Sakaki
