單項選擇題

在以下程序中,完成該語句,以便當(dāng)距離達(dá)到250英里或使用了10加侖燃油時,程序停止生成觀測值()。
data work.go250;
set perm.cars;
do gallons=1to 10...;
Distance=gallons*mpg;
output;
end;
run;

A.while(Distance< 250)
B.when(Distance>250)
C.over(Distance le 250)
D.until(Distance=250)


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題除了()其余都可以創(chuàng)建宏變量。

A.data lines
B.procedures
C.the FORMAT statement
D.the INPUT statement

3.單項選擇題變量Address2包含諸如Piscataway,NJ之類的值。如何將兩個字母的州縮寫分配給名為State的新變量?()

A.State=scan(address2,2);
B.State=scan(address2,13,2);
C.State=substr(address2,2);
D.State=substr(address2,13,2);

4.單項選擇題下列哪項時對Var1,Var2,Var3,Var4求均值?()

A.mean(var1,var4)
B.mean(var1-var4)
C.mean(of var1,var4)
D.mean(of var1-var4)

5.單項選擇題

哪個SAS程序讀取ID的值并保存每個Quantity值的記錄,以便為每個記錄創(chuàng)建三個觀察值?()

A.data work.sales;infile unitsold;input ID $;do week=1to 3;input Quantity :comma.;output;end;run;
B.data work.sales;infile unitsold;input ID $@@;do week=1to 3;input Quantity :comma.;output;end;run;
C.data work.sales;infile unitsold;input ID $@;do week=1to 3;input Quantity :comma.;output;end;run;
D.data work.sales;infile unitsold;input ID $@;do week=1to 3;input Quantity :comma.@;output;end;run;