Aug 10, 2011

10

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. The program fails to execute due to errors.
D. Neither variable JCODE nor JOBCODE is written to the output data set.

No comments:

Post a Comment