基本上还是63题 只有4-5题不太一样
新题基本上还是比较简单的 如果你63题都融会贯通的话
我是把SAS Adv Prepare Guide整本都读过一遍
考题不太懂得自己试过一遍 或者看别人怎么解
原本不怎么用SQL 现在开始在工作上也用看看 感觉SQL很powerful阿!
抱著还是想学一点新的东西去考的 挺有收获的!
置顶上有63题 可以下载 有两个我自己在书上或者网路上找到答案的:
* 答案A:
Item 7 of 63 Mark item for review
A quick rule of thumb for the space
required to run PROC SORT is:
A.
two times the size of the SAS data set being sorted.
* 答案A:
Item 20 of 63 Mark item for review
The following SAS program is submitted:
data WORK.TEMP;
length A B 3 X;
infile RAWDATA;
input A B X;
run;
What is the length of variable A?
A.
3