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 |
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?
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?
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?
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?