최신 A00-212 무료덤프 - SASInstitute SAS Advanced Programming Exam for SAS 9
Which one of the following programs contains a syntax error?
정답: D
Given the two output sets shown on the left, which program produced the output shown on the right?




정답: D
설명: (DumpTOP 회원만 볼 수 있음)
The following SAS program is submitted:
% macro location;
data _null_;
call symput ('dept','sales');
run;
% let country=Germany;
% put_global_;
% mend;
% let company = ABC;
% location;
Which macro variables are written to the SAS log?
% macro location;
data _null_;
call symput ('dept','sales');
run;
% let country=Germany;
% put_global_;
% mend;
% let company = ABC;
% location;
Which macro variables are written to the SAS log?
정답: A
The following SAS program is submitted:
% let a = cat;
% macro animal(a = frog);
% let a = bird;
% mend;
% animal(a = pig)
% put a is &a;
Which one of the following is written to the SAS log?
% let a = cat;
% macro animal(a = frog);
% let a = bird;
% mend;
% animal(a = pig)
% put a is &a;
Which one of the following is written to the SAS log?
정답: D
Which one of the following options displays the value of a macro variable in the SAS log?
정답: C
CORRECT TEXT
The following SAS program is submitted:
% macro check(num=4);
% let result=%sysevalf(&num+0.5);
% put result is &result;
% mend;
% check(num=10)
What is the written to the SAS log?
The following SAS program is submitted:
% macro check(num=4);
% let result=%sysevalf(&num+0.5);
% put result is &result;
% mend;
% check(num=10)
What is the written to the SAS log?
정답: D
Given the following SAS data set ONE:
ONE
NUM VAR
1 A
2 B
3 C
Which one of the following SQL programs deletes the SAS data set ONE?
ONE
NUM VAR
1 A
2 B
3 C
Which one of the following SQL programs deletes the SAS data set ONE?
정답: A
Given the SAS data sets:

The following SAS program is submitted:

What data values are stored in data set WORK.COMBINE?


The following SAS program is submitted:

What data values are stored in data set WORK.COMBINE?

정답: D
The SAS set WORK CHECK has an index on the variable Code and the following SAS program is submitted.
proc sort data=WORK.CHECK;
by Code;
run;
What describes the result of submitting SAS program?
proc sort data=WORK.CHECK;
by Code;
run;
What describes the result of submitting SAS program?
정답: D
Which option forces the use of a specific index from a data set?
정답: D
설명: (DumpTOP 회원만 볼 수 있음)