Company: Accenture
Difficulty: medium
For the given Spark query, which of the following defines the equivalent query that runs the same computation over a 10% block sample of the input? ``` 1 sq = file.map(ar =>(ar.rank, ar.size)) 2 val = sq.reduceByKey((p,q) => p*q).collect() ```