Multiple choice technology programming languages If DISP parameter is not coded in the DD statement that what is the default value? DISP=OLD,DELETE,KEEP DISP=OLD,KEEP,KEEP DISP=NEW,DELETE,DELETE DISP=SHR,KEEP,DELETE Reveal answer Fill a bubble to check yourself C Correct answer Explanation When DISP parameter is omitted, the default is DISP=NEW,DELETE,DELETE. This means create a new dataset, delete it if the step fails normally, and delete it if the step abnormally terminates. The dataset exists only during the step execution.