x*c 发帖数: 156 | 1 45.The following SAS program is submitted:
ods csvall file='c:\test.cvs';
proc print data=WORK.ONE;
var Name Score Grade;
by IdNumber;
run;
ods csvall close;
What is produced as output?
A. A file named test.cvs that can only be opened in Excel.
B. A text file named test.cvs that can be opened in Excel or in any
text editor.
C. A text file named test.cvs that can only be opened in a text editor.
D. A file named test.cvs that can only be opened by SAS
70题里的答案是C, crakman给的答案是B. 请问哪一个正确?
手头没有SAS可以试验...
谢谢! | p******m 发帖数: 65 | 2 请注意这里是‘cvs'
ods csvall file='c:\test.cvs'
这样的话正确答案是c
但是这个估计是typo.
因为在正式考试里我也碰到了这道题,他就变成了'csv'.
答案就是b | S********s 发帖数: 42 | 3 我在考试的时候也碰到了这道题, 题目给的是:ods csvall file='c:\test.csv',答
案应该是b. |
|