0 votes
by
Which transformation returns a new DStream by selecting only those records of the source DStream for which the function returns true?

1. map(func)

2. transform(func)

3. filter(func)

4. count()

1 Answer

0 votes
by

The correct answer is c) filter(func).

...