Given the SAS data set WORK.THREE:

The following SAS program is submitted:

What is the result?
正解:
Pending
質問 2:
Which step displays a listing of all the data sets in the WORK library?
A. proc contents lib=WORKrun;
B. proc contents lib=WORK.all;run;
C. proc contents data=WORK._all_;run;
D. proc contents data=WORK _ALL_;run;
正解:C
質問 3:
After a SAS program is submitted, the following is written to the SAS log:
105 data WORK.JANUARY;
106 set WORK.ALLYEAR(keep=Product Month Quantity Cost);
107 if Month='JAN' then output WORK.JANUARY;
108 Sales=Cost * Quantity;
109 drop=Month Quantity Cost;
-----
22
ERROR 22-322: Syntax error, expecting one of the following: !,
!!, , *, **, +, -,
, <=, <>, =, >, >=,
AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL,
NOTIN, OR, ^=, |, ||, ~=.
110 run;
What data set option could be attached to WORK.JANUARY to replace the DROP statement that generated the error in the log?
A. (drop=Month, Quantity, Cost)
B. (drop=Month Quantity Cost)
C. (drop Month, Quantity, Cost)
D. (drop Month Quantity Cost)
正解:B
質問 4:
The following SAS program is submitted:
data work.test;
array agents{4} $ 12 sales1 - sales4;
run;
Which one of the following represents the variables that are contained in the output data set?
A. SALES1, SALES2, SALES3, SALES4
B. AGENTS1, AGENTS2, AGENTS3, AGENTS4
C. None, the DATA step fails because the ARRAY statement can reference only pre-existing variables.
D. None, the DATA step fails because the ARRAY statement can reference only numeric data.
正解:A
質問 5:
A raw data file is listed below:
RANCH,1250,2,1,Sheppard Avenue,"$64,000"
SPLIT,1190,1,1,Rand Street,"$65,850"
CONDO,1400,2,1.5,Market Street,"80,050"
TWOSTORY,1810,4,3,Garris Street,"$107,250"
RANCH,1500,3,3,Kemble Avenue,"$86,650"
SPLIT,1615,4,3,West Drive,"94,450"
SPLIT,1305,3,1.5,Graham Avenue,"$73,650"
The following SAS program is submitted using the raw data file as input:
data work.condo_ranch;
infile 'file-specification' dsd;
input style $ @;
if style = 'CONDO' or style = 'RANCH';
input sqfeet bedrooms baths street $ price : dollar10.;
run;
How many observations will the output data set contain?
A. 0
B. 5
C. 3
D. 7
正解:C
1156 お客様のコメント
クリック」





Yoshioka -
この資料を購入してから1週間程度勉強して今日試験を受けに行きました。そして合格できました。模擬試験を読み込むまで繰り返すれば合格は間違いないと言っても過言ではありません。ありがとうございました。