Question
What does map do on an RDD?
Select an option. Your answer will be checked instantly.
Correct Answer: A. Produces one output element for each input element
Explanation:
map applies a supplied function independently to every record.
The result is a new RDD.
Leave a Reply