Associate-Developer-Apache-Spark試験無料問題集「Databricks Certified Associate Developer for Apache Spark 3.0 認定」

The code block shown below should return a new 2-column DataFrame that shows one attribute from column attributes per row next to the associated itemName, for all suppliers in column supplier whose name includes Sports. Choose the answer that correctly fills the blanks in the code block to accomplish this.
Sample of DataFrame itemsDf:
1.+------+----------------------------------+-----------------------------+-------------------+
2.|itemId|itemName |attributes |supplier |
3.+------+----------------------------------+-----------------------------+-------------------+
4.|1 |Thick Coat for Walking in the Snow|[blue, winter, cozy] |Sports Company Inc.|
5.|2 |Elegant Outdoors Summer Dress |[red, summer, fresh, cooling]|YetiX |
6.|3 |Outdoors Backpack |[green, summer, travel] |Sports Company Inc.|
7.+------+----------------------------------+-----------------------------+-------------------+ Code block:
itemsDf.__1__(__2__).select(__3__, __4__)

解説: (GoShiken メンバーにのみ表示されます)
Which of the following statements about stages is correct?

解説: (GoShiken メンバーにのみ表示されます)
Which of the following code blocks immediately removes the previously cached DataFrame transactionsDf from memory and disk?

解説: (GoShiken メンバーにのみ表示されます)
Which of the following code blocks returns a copy of DataFrame transactionsDf that only includes columns transactionId, storeId, productId and f?
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.+-------------+---------+-----+-------+---------+----+

解説: (GoShiken メンバーにのみ表示されます)
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.

解説: (GoShiken メンバーにのみ表示されます)
The code block shown below should return a copy of DataFrame transactionsDf without columns value and productId and with an additional column associateId that has the value 5. Choose the answer that correctly fills the blanks in the code block to accomplish this.
transactionsDf.__1__(__2__, __3__).__4__(__5__, 'value')

解説: (GoShiken メンバーにのみ表示されます)
Which of the following statements about garbage collection in Spark is incorrect?

解説: (GoShiken メンバーにのみ表示されます)
Which of the following describes a valid concern about partitioning?

解説: (GoShiken メンバーにのみ表示されます)
Which of the following describes Spark's Adaptive Query Execution?

解説: (GoShiken メンバーにのみ表示されます)
Which of the following statements about broadcast variables is correct?

解説: (GoShiken メンバーにのみ表示されます)