Multiple choice technology web technology

Using which option we can copy one input file o multiple outputfiles using sort. //S1 EXEC PGM=SORT //SYSOUT DD SYSOUT=* //SORTIN DD DSN=... inputFILE //OUT1 DD DSN=... outputFILE1 //OUT2 DD DSN=... output file2 ... //SYSIN DD * OPTION COPY

  1. OUTREC FNAMES=(OUT1,OUT2,...)

  2. OUTFIL FNAMES=(OUT1,OUT2,...)

  3. A & B

  4. NONE

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

OUTFIL FNAMES is the correct SORT utility option to copy one input file to multiple output files. The syntax OUTFIL FNAMES=(OUT1,OUT2,...) specifies the DD names for multiple output files. OUTREC is used for record reformatting, not for directing output to multiple files.