Multiple choice technology mainframe

How to copy the eliminated duplicate records into another file wherein the SORT happens on the 1st 3 characters of the file?

  1. SORT FIELDS=(1,3,CH,A) SUM FIELDS=NONE OUTFILE FNAME = F2

  2. SORT FIELDS=(1,3,CH,A) SUM FIELDS=NONE,XSUM

  3. SORT FIELDS=(1,3,CH,A) SUM FIELDS=NONE COPY = F2

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In DFSORT/SYNCSORT, using SUM FIELDS=NONE eliminates duplicate records based on the sort keys. Specifying the XSUM parameter copies those eliminated duplicate records into a separate output dataset.