Google News
logo
Spark - Quiz(MCQ)
Which of the following is not true for map() Operation?
A)
Map transforms an RDD of length N into another RDD of length N.
B)
It applies to each element of RDD and it returns the result as new RDD
C)
Map allows returning 0, 1 or more elements from map function.
D)
In the Map operation developer can define his own custom business logic.

Correct Answer :   Map allows returning 0, 1 or more elements from map function.

Advertisement