exam questions

Exam Certified Associate Developer for Apache Spark All Questions

View all questions & answers for the Certified Associate Developer for Apache Spark exam

Exam Certified Associate Developer for Apache Spark topic 1 question 121 discussion

Which of the following operations will fail to trigger evaluation?

  • A. DataFrame.collect()
  • B. DataFrame.count()
  • C. DataFrame.first()
  • D. DataFrame.join()
  • E. DataFrame.take()
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
ARUNKUMARKRISHNASAMY
1 month, 3 weeks ago
Selected Answer: D
Explanation In Apache Spark, operations are classified as transformations and actions: Transformations (Lazy Evaluation) → They define a logical plan but do not trigger execution. Actions (Trigger Evaluation) → They cause Spark to execute the transformations and return a result. Analysis of Each Option A. DataFrame.collect() → Action → Brings all data to the driver, triggering execution. B. DataFrame.count() → Action → Computes the number of rows, triggering execution. C. DataFrame.first() → Action → Returns the first row, triggering execution. D. DataFrame.join() → Transformation → Defines a new DataFrame but does not trigger execution. E. DataFrame.take() → Action → Returns a limited number of rows, triggering execution.
upvoted 1 times
...
Anweee
9 months ago
Join is a tranformation so it will not throw results, while others are actions, so Join() is correct
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago