Question
What is an RDD transformation?
Select an option. Your answer will be checked instantly.
Correct Answer: B. A lazy operation that defines a new RDD
Explanation:
Transformations such as map and filter add steps to the lineage graph.
They are not executed until an action requires results.
Leave a Reply