How are keys and values presented and passed to the reducers during a standard sort and shuffle phase of MapReduce?

How are keys and values presented and passed to the reducers during a standard sort and shuffle phase of MapReduce?
Keys are presented to reducer in sorted order; values for a given key are not sorted.
Excellent ! Your Answer is Correct.
Keys are presented to reducer in sorted order; values for a given key are sorted in ascending order.
Keys are presented to a reducer in random order; values for a given key are not sorted.
Keys are presented to a reducer in random order; values for a given key are sorted in ascending order.

When is the earliest point at which the reduce method of a given Reducer can be called?

When is the earliest point at which the reduce method of a given Reducer can be called?
Not until all mappers have finished processing all records.
Excellent ! Your Answer is Correct.
As soon as a mapper has emitted at least one record.
As soon as at least one mapper has finished processing its input split.
It depends on the InputFormat used for the job.
Page 13 of 60
1 11 12 13 14 15 60