최신SASInstitute SAS Advanced Programming Exam for SAS 9 (A00-212日本語版) - A00-212日本語무료샘플문제
문제1










정답: B
문제2


정답: D
문제3

<insert statement here>;
% let development = ontime;
proc print data = sasuser.highway;
title "For &dept";
title2 "This project was completed &development";
run;


<insert statement here>;
% let development = ontime;
proc print data = sasuser.highway;
title "For &dept";
title2 "This project was completed &development";
run;

정답: A
문제4

SASUSER.HIGHWAY


% macro highway;
proc sql nonprint;
% let numgrp=6;
select distinct status into:group1-:group&numgrp from sasuser.highway;
quit;
% do i=1 %to &numgrp;
proc print data =sasuser.highway;
where status ="&&group&I";
run;
% end;
% mend;
% highway


SASUSER.HIGHWAY


% macro highway;
proc sql nonprint;
% let numgrp=6;
select distinct status into:group1-:group&numgrp from sasuser.highway;
quit;
% do i=1 %to &numgrp;
proc print data =sasuser.highway;
where status ="&&group&I";
run;
% end;
% mend;
% highway

정답: D
문제5






정답: B
문제6






정답: D
문제7

% macro test(var);
% let jobs = BLACKSMITH WORDSMITH SWORDSMITH;
% let type = %index(&jobs,&var);
% mend;
% test(SMITH)


% macro test(var);
% let jobs = BLACKSMITH WORDSMITH SWORDSMITH;
% let type = %index(&jobs,&var);
% mend;
% test(SMITH)

정답: D
문제8


정답: A
문제9


정답: D