Databricks Certified Associate Developer for Apache Spark Exam Practice Questions (P. 4)
- Full Access (207 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #16
- Adf.repartition(12)Most Voted
- Bdf.cache()
- Cdf.partitionBy(1.5)
- Ddf.coalesce(12)
- Edf.partitionBy(12)
A


Hi! Do you need help with this question ?
- Why isn't the A the right answer?
- Traducir la pregunta al español
Contributor get free access to an augmented ChatGPT 4 trained with the latest IT Questions.
Question #17

Hi! Do you need help with this question ?
- Why isn't the A the right answer?
- Traducir la pregunta al español
Contributor get free access to an augmented ChatGPT 4 trained with the latest IT Questions.
Question #18
- AstoresDF.subset()
- BstoresDF.select()Most Voted
- CstoresDF.selectColumn()
- DstoresDF.filter()
- EstoresDF.drop()
B

Hi! Do you need help with this question ?
- Why isn't the A the right answer?
- Traducir la pregunta al español
Contributor get free access to an augmented ChatGPT 4 trained with the latest IT Questions.
Question #19
Code block:
storesDF.drop(sqft, customerSatisfaction)
- AThe drop() operation only works if one column name is called at a time – there should be two calls in succession like storesDF.drop("sqft").drop("customerSatisfaction").
- BThe drop() operation only works if column names are wrapped inside the col() function like storesDF.drop(col(sqft), col(customerSatisfaction)).
- CThere is no drop() operation for storesDF.
- DThe sqft and customerSatisfaction column names should be quoted like "sqft" and "customerSatisfaction".Most Voted
- EThe sqft and customerSatisfaction column names should be subset from the DataFrame storesDF like storesDF."sqft" and storesDF."customerSatisfaction".
D

Hi! Do you need help with this question ?
- Why isn't the A the right answer?
- Traducir la pregunta al español
Contributor get free access to an augmented ChatGPT 4 trained with the latest IT Questions.
Question #20
- AstoresDF.filter("sqft" <= 25000)
- BstoresDF.filter(sqft > 25000)
- CstoresDF.where(storesDF[sqft] > 25000)
- DstoresDF.where(sqft > 25000)
- EstoresDF.filter(col("sqft") <= 25000)Most Voted
E

Hi! Do you need help with this question ?
- Why isn't the A the right answer?
- Traducir la pregunta al español
Contributor get free access to an augmented ChatGPT 4 trained with the latest IT Questions.
All Pages