SAS Certified Base Programmer 123 Questions (62)
The following SAS program is submitted:
data work.company; set work.dept1(keep = jobcode) work.dept2(rename = (jcode = jobcode)); run;
Which one of the following is the result?
A. The variable JCODE is written to the output data set.
B. The variable JOBCODE is written to the output data set.
C. Neither variable JCODE nor JOBCODE is written to the output data set.
D. The program fails to execute due to errors.
Topics:
SAS Base Questions |
1 Comment »
B