作业帮 > 英语 > 作业

一道sas base programming 的题

来源:学生作业帮 编辑:搜搜考试网作业帮 分类:英语作业 时间:2024/07/21 02:37:16
一道sas base programming 的题
The following SAS program is submitted:
data_null_;
set old;
put sales1 sales2;
run;
Where is the output written?
A. the SAS log
B. the raw data file that was opened last
C. the SAS output window or an output file
D. the data set mentioned in the DATA statement
Answer: A
为什麽答案是A?
谢谢!
一道sas base programming 的题
因为_null_的缘故,data _null_不会输出到output或file.
put sales1 sales2,则是在sas log中输出sales1和sales2的变量值.