Multiple choice technology mainframe

What is the DISPOSITION of a dataset if the DISP field is not coded in the JCL?

  1. (NEW,CATLG,CATLG)

  2. (NEW,DELETE,DELETE)

  3. (NEW,CATLG,DELETE)

  4. (OLD,CATLG,UNCATLG)

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

In JCL, if the DISP parameter is omitted, the default disposition is (NEW,DELETE,DELETE) for new datasets. This means the dataset is treated as new, and will be deleted in both normal and abnormal termination conditions. Default dispositions prioritize cleanup over keeping datasets that aren't explicitly managed.