SAS Certified Base Programmer 50 Questions (35)
The contents of the SAS data set Sasdata.Group are listed below.
name age Janice 10 Henri 11 Michele 11 Susan 12
The following SAS program is submitted using the Sasdata.Group data set as input:
libname sasdata 'SAS-data-library'; data group; set sasdata.group; file 'file-specification'; put name $15. @5 age 2.; run;
Which one of the following describes the output created?
a. a raw data file only
b. a SAS data set named Group only
c. both a SAS data set named Group and a raw data file
d. The program fails execution due to errors.
Topics:
SAS Base Questions |
2 Comments »
C
can you explain