SASInstitute SAS Base Programming for SAS 9 (A00-211日本語版) - A00-211日本語 模擬練習



正解: C





正解:
Pending

capacity airplanetype staff
150 Large 10

正解: D

--------10-------20-------30
Janice 10
Henri 11
Michael 11
Susan 12

data group;
infile 'team';
input name $15. age 2.;
file 'file-specification';
put name $15. +5 age 2.;
run;

正解: B



正解: A

AGES AGE

data subset;
set ages;
where age> 12;
run;

正解: C



正解: D

正解:
Pending

正解: B



正解: A

data work.test;
First = 'Ipswich, England';
City_Country = substr(First,1,7)!!', '!!'England';
run;

正解: A



正解: B