The following SAS program is submitted:
< insert ODS statement here>
proc means data = sasuser.shoes;
where product in ('Sandal' , 'Slipper' , 'Boot');
run;
Which one of the following ODS statements completes the program and sends the report to an HTML file?
A. ods html = 'sales.html';
B. ods file html = 'sales.html';
C. ods html file = 'sales.html';
D. ods file = 'sales.html';
正解:C
質問 2:
The following SAS program is submitted:
data work.report;
set work.sales_info;
if qtr(sales_date) ge 3;
run;
The SAS data set WORK.SALES_INFO has one observation for each month in the year
2000 and the variable SALES_DATE which contains a SAS date value for each of the twelve months.
How many of the original twelve observations in WORK.SALES_INFO are written to the
WORK.REPORT data set?
A. 3
B. 9
C. 6
D. 2
正解:C
質問 3:
The SAS data set BANKS is listed below:

The following SAS program is submitted:
data newbank;
do year = 1 to 3;
set banks;
capital + 5000;
end;
run;
Which one of the following represents how many observations and variables will exist in the
SAS data set NEWBANK?
A. 9 observations and 2 variables
B. 3 observations and 3 variables
C. 0 observations and 0 variables
D. 1 observations and 4 variables
正解:D
質問 4:
The contents of the raw data file AMOUNT are listed below:
----|----10---|----20---|----30
$1,234
The following SAS program is submitted:
data test;
infile 'amount';
input @1 salary 6.;
if _error_ then description = 'Problems';
else description = 'No Problems';
run;
Which one of the following is the value of the DESCRIPTION variable?
A. The value can not be determined as the program fails to execute due to errors.
B. Problems
C. ' ' (missing character value)
D. No Problems
正解:B
質問 5:
Which one of the following SAS system options prevents the page number from appearing on a report?
A. NONUMBER
B. NOPAGENUM
C. NOPAGE
D. NONUM
正解:A
質問 6:
The contents of the raw data file TEAM are listed below:
----|----10---|----20---|----30
Janice 10
Henri 11
Michael 11
Susan 12
The following SAS program is submitted:
data group;
infile 'team';
input name $15. age 2.;
file 'file-specification';
put name $15. +5 age 2.;
run;
Which one of the following describes the output created?
A. a SAS data set named GROUP only
B. a SAS data set named GROUP and a raw data file
C. a raw data file only
D. No output is generated as the program fails to execute due to errors.
正解:B
843 お客様のコメント







染谷** -
SASInstituteの問題集はとにかくわかりやすい!
受かることを優先しようとおもえば、模擬試験を反復すれば、このA00-201で大丈夫でした!ありがとうございます!