最新的SASInstitute SAS Advanced Programming Exam for SAS 9 (A00-212日本語版) - A00-212日本語免費考試真題



正確答案: D





正確答案: D

ONE TWO
NUM CHAR1 NUM CHAR2
1 A 2 X
2 B 3 Y
4 D 5 V

data three;
set one two;
run;
THREE
NUM CHAR1 CHAR2
1 A
2 B
4 D
2 X
3 Y
5 V

正確答案: B





正確答案: C

正確答案: B

% let lib = %upcase(sasuser);
proc sql;
select nvar
from dictionary.tables
where libname = "&lib";
quit;

正確答案: A

TotalScore
----------------
512
657
*
782



TotalScore
--------------
512
657
782

正確答案: B

正確答案: D

正確答案: B
說明:(僅 Fast2test 成員可見)





正確答案: C

正確答案: B

正確答案: B

% let name = Patel's Restaurant;

正確答案: D

proc sql;
select product, type, sum(sales) as revenue
from one
group by product, type;
quit;

正確答案: B