单项选择题
述程序运行后,有多少个html文件被创建?()
ods html file=’newfile.html’;
proc print data=sasuser.houses;
run;
proc means data=sasuser.houses;
run;
proc freq data=sasuser.shoes;
run;
ods html close;
proc print data=sasuser.shoes;
run;
A.1
B.2
C.3
D.4
点击查看答案&解析
相关考题
-
单项选择题
以下数值变量名哪个是合法的?()
A.AB
B.5AB
C.AB-5
D.AB/64544121 -
单项选择题
下述程序运行后,d 和e 的取值分别为()。data a;a=.;b=1;c=0;d=a+b;e=b+c;run;
A.1;1
B..;1
C.0;1
D..无法运行 -
单项选择题
下述代码运行后,结果是()。%let a=b;%let b=2;%put &&&a;
A.b
B.2
C.4
D.报错
