65.The following SAS program is submitted:
data WORK.ACCOUNTING;
set WORK.DEPARTMENT;
label Jobcode=’Job Description’;
run;
Which statement is true about the output dataset?
A. The label of the variable Jobcode is Job (only the first word).
B. The label of the variable Jobcode is Job Desc (only the first 8 characters).
C. The label of the variable Jobcode is Job Description.
D. The program fails to execute due to errors. Labels must be defined in a PROC step.
Answer: C
考察的是LABEL语句的作用。
LABEL的标签长度不是默认的8个字符,LABEL的长度可以达到 256 characters, including blanks。
原文地址:http://crackman.net/?p=391