SAS Certified Base Programmer 50 Questions (37)
The following SAS program is submitted:
data work.accounting; length jobcode $ 12; set work.department; run;
The Work.Department SAS data set contains a character variable named jobcode with a length of 5. Which of the following is the length of the variable jobcode in the output data set?
a. 5
b. 8
c. 12
d. The value cannot be determined because the program fails to execute due to syntax errors.
Topics:
SAS Base Questions |
2 Comments »
C
please explain?