The SAS data set WORK.TEMPDATA contains the variables FMTNAME, START and LABEL and it consists of 10 observations.
The following SAS program is submitted:
Proc format cntlin=wor.tempdata;
Run;
What is the result of submitting the FORMAT procedure step?
- It uses the WORK.TEMPDATA SAS data set as input to create the format
- All formats created will be stored in two WORK.TEMPDATA SAS data set
- An ERROR message is written to the SAS log because the program is incomplete
- NO formats are created in this step
Reveal Solution Next Question