不到90%通過,62items,集中學(xué)習(xí)2周吧。
面對壇子里的牛人,我也不好講什么經(jīng)驗(yàn),還是講講備考經(jīng)歷和題庫里沒有的新題吧。
備考經(jīng)歷:
現(xiàn)在在一家醫(yī)藥公司實(shí)習(xí),因?yàn)楝F(xiàn)在藥企只承認(rèn)SAS,又加上自己感覺將來不管是做研究還是工作都會用得到,所以就考了。之前研究生課程里面有SAS入門、SAS進(jìn)階等課程,只是當(dāng)時(shí)由于時(shí)間限制只是去旁聽了幾節(jié)課。自從決心要考SAS,我便在壇子里搜索相關(guān)的帖子和資料,在這里灰常感謝各位LZ啊~~
我看得最仔細(xì)的就是crackman的70道題。這份資料不光是題目,還有sas權(quán)威教材的相關(guān)講解,加入部分sas官網(wǎng)的講解、例題,親自操作相關(guān)程序及其結(jié)果。很有利用我們對于程序的理解。
123題也有英文講解但是講的比較粗糙。50題有些簡單。
如果你僅僅是為了分?jǐn)?shù),那么狂刷70+50+123就好了。
我同時(shí)還看了SAS certification prep guide-base,里面針對各種問題講解的比較詳細(xì),如果時(shí)間充裕的話可以仔細(xì)的讀一讀。我只是在考前3天瀏覽了一下。因?yàn)橹翱吹礁鞣N題庫對各知識點(diǎn),理解的差不多,再看這個(gè)guide的話比較流暢。
新題:(有好幾個(gè)沒把握,所以最后還沒上90= =)
1. odshtml file '路徑';
proc freq data=aa;
proc print data=bb;
run;
odshtml close;
a.freqprocedure only output
b.printprocedure only output
c. bothfreq and print procedure output
d. nonebecause of the syntax errors
2.procprint data=work.aa;
setwork.bb end=eof;
newvar=eof;
run;
work.bbhas 451 obs.Q:the calue of the variable newvar?
a.0
b.451
c..
d.1
3.thedataset names are right?
a. two_
b._two
c.2two
d.two-2
4.After aSAS programis submitted, the following is written to the SAS log:
101 data WORK.JANUARY;
102 set WORK.ALLYEAR(keep=product month num_Sold Cost);
103 if Month='Jan' then output WORK.JANUARY;
104 Sales=Cost * Num_Sold;
105 keep=Product Sales;
-----
22
ERROR22-322: Syntax error, expecting one ofthe following: !,!!, &, *, **, +, -,, <=, <>, =, >, >=,
AND, EQ, GE, GT, IN,LE, LT,MAX, MIN, NE, NG, NL,NOTIN, OR, ^=, |, ||, ~=.
106run;
What'dwrong with this error?
(與原題庫相比,換了一種問法)
a. thedrop statement use = sign
其它選項(xiàng)不記得了
5.Giventhe SAS data setWORK.PRODUCTS:
ProdId Price ProductType Sales Returns
------ ----- ----------- ----- -------
K12S 95.50 OUTDOOR 15 2
B132S 2.99 CLOTHING 300 10
R18KY2 51.99 EQUIPMENT 25 5
3KL8BY 6.39 OUTDOOR 125 15
DY65DW 5.60 OUTDOOR 45 5
DGTY23 34.55 EQUIPMENT 67 2
Thefollowing SASprogram is submitted:
dataWORK.OUTDOOR WORK.CLOTH WORK.EQUIP;
set WORK.PRODUCTS;
if Sales GT 50;
if ProductType EQ'OUTDOOR' thenoutput WORK.OUTDOOR;
else if ProductType EQ 'CLOTHING' thenoutput WORK.CLOTH;
else if ProductType EQ 'EQUIPMENT' thenoutput WORK.EQUIP;
run;
How manyobservationsdoes the WORK.OUTDOOR data set contain?(題目一樣,偷換了數(shù)字= =)
A. 1
B. 2
C. 3
D. 6
6.dataWORK.PRODUCTS;
Prod=1;
do while(Prod LE 6);
Prod + 1;
end;
run;
其中do while do until 以及括號的語句,要靈活掌握。
7.一個(gè)排序的問題
by var1var2 desceding var3 var4
問4個(gè)vars是怎么排序的
應(yīng)該是var1 var2 ascending,var3 descending
8. obsnumber
1 25
2 10
3 .
4 20
5 30
total=total+number的output(我覺得total應(yīng)該是缺失吧?)
obsnumber total
1 25
2 10
3 .
4 20
5 30
總之,只是想要考過,看50+70+123題庫,再加理解,完全沒問題。考試的時(shí)候不能只記答案,還是靈活掌握。