Online Access Free A00-201 Exam Questions

Exam Code:A00-201
Exam Name:SAS base programming exam
Certification Provider:SASInstitute
Free Question Number:140
Posted:Jul 30, 2026
Rating
100%

Question 1

The following SAS SORT procedure step generates an output data set:
proc sort data = sasuser.houses out = report;
by style;
run;
In which library is the output data set stored?

Question 2

The following SAS program is submitted:
data work.pieces;
do while (n lt 6);
n + 1; end;
run;
Which one of the following is the value of the variable N in the output data set?

Question 3

The following SAS program is submitted:
data work.retail;
cost = '20000';
total = .10 * cost;
run;
Which one of the following is the value of the variable TOTAL in the output data set?

Question 4

CORRECT TEXT
The SAS data set QTR1_REVENUE is listed below:

The following SAS program is submitted:
proc sort data = qtr1_revenue;
by destination descending revenue;
run;
Which one of the following represents the first observation in the output data set?

Question 5

The following SAS program is submitted:
data work.staff;
JobCategory = 'FA';
JobLevel = '1';
JobCategory = JobCategory || JobLevel;
run;
Which one of the following is the value of the variable JOBCATEGORY in the output data set?

Add Comments

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

insert code
Type the characters from the picture.