SAS Certified Base Programmer 123 Questions (107)
The following SAS program is submitted:
libnamesasdata 'SAS-data-library'; data set; set sasdata .chemists; if jobcode = 'chem3' then description = 'Senior Chemist'; else description = 'Unknown'; run;
A value for the variable JOBCODE is listed below:
JOBCODE
CHEM3
Which one of the following values does the variable DESCRIPTION contain?
A. chem3
B. Unknown
C. Senior Chemist
D. ‘ ‘ (missing character value)
Topics:
SAS Base Questions |
1 Comment »
B