Online Access Free A00-202 Practice Test

Exam Code:A00-202
Exam Name:SAS advanced programming exam
Certification Provider:SASInstitute
Free Question Number:76
Posted:May 21, 2026
Rating
100%

Question 1

The following SAS program is submitted:
%macro execute; <insert statement here> proc print data = sasuser.houses; run; %end;
%mend;
Which of the following completes the above program so that it executes on Tuesday?

Question 2

Given the following SAS data set ONE:
ONE DIVISION SALES
A 1234 A 3654 B 5678
The following SAS program is submitted:
data _null_; set one;
by division;
if first.division then
call symput('mfirst',sales);
if last.division then
call symput('mlast',sales);
run;
Which one of the following is the value of the macro variable MFIRST when the above program finishes execution?

Question 3

The variable attributes of SAS data sets ONE and TWO are shown below:
ONE TWO # Variable Type Len Pos # Variable Type Len Pos 2 sales Num 8 8 2 budget Num 8 8 1 year Num 8 0 3 sales Char 8 16
1 year Num 8 0
Data set ONE contains 100 observations. Data set TWO contains 50 observations. Both data sets are sorted by the variable YEAR.
The following SAS program is submitted:
data three; merge one two; by year;
run;
Which one of the following is the result of the program execution?

Question 4

The following SAS program is submitted:
%let name = Patel's Restaurant;
Which one of the following statements avoids problems associated with the unbalanced quotation mark?

Question 5

The following SAS code is submitted:
%macro houses(dsn = houses,sub = RANCH);
data &dsn;
set sasuser.houses;
if style = "&sub";
run;
%mend;
%houses(sub = SPLIT)
%houses(dsn = ranch)
%houses(sub = TWOSTORY)
Which one of the following is the value of the automatic macro variable SYSLAST?

Add Comments

Your email address will not be published. Required fields are marked *

insert code
Type the characters from the picture.