单项选择题
述程序运行后,有多少个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.1B.2C.3D.4
单项选择题 以下数值变量名哪个是合法的?()
单项选择题 下述程序运行后,d 和e 的取值分别为()。data a;a=.;b=1;c=0;d=a+b;e=b+c;run;
单项选择题 下述代码运行后,结果是()。%let a=b;%let b=2;%put &&&a;