The SAS data set WORK.AWARDS is listed below:
The following SAS program is submitted:
proc sort data = work.awards;
by descending fname points;
run;
Which one of the following represents how the observations are sorted?

The following SAS program is submitted:
data work.sets;
do until (prod gt 6);
prod + 1;
end;
run;
Which one of the following is the value of the variable PROD in the output data set?
A. 5The contents of the raw data file CALENDAR are listed below:
----|----10----|----20----|----30
01012000
The following SAS program is submitted:
data test;
infile `calendar';
input@1 date mmddyy10.;
if date = `01012000'd then event = `January 1st;
run;
Which one of the following is the value of the EVENT variable?
A. 01012000The following SAS program is submitted:
data work.test;
array agents{4}$ 12 sales1 - sales4
run;
Which one of the following represents the variables that are contained in the output data set?
A. SALES1, SALES2, SALES3, SALES4The following SAS DATA step is submitted: data sasdata.atlanta
sasdata.boston
work.portland work.phoenix;
set company.prdsales;
if region = `NE' then output boston;
if region = `SE' then output atlanta;
if region = `SW' then output phoenix;
if region = `NW' then output portland;
run;
Which one of the following is true regarding the output data sets?
A. No library references are required.The contents of the raw data file SIZE are listed below:
----I----10---I----20---I----30 72 95
The following SAS program is submitted:
data test;
infile `size';
input@1 height 2. @4 weight 2;
run;
Which one of the following is the value of the variable WEIGHT in the output data set?
A. 2The SAS data set named WORK.TEST is listed below:
Which one of the following SAS programs created this data set?
A. data work.test; capacity= 150; if 100 le capacity le 200 then airplanetype = `Large' and staff = 10; else airplanetype = `Small' and staff = 5; run;The contents of the raw data file AMOUNT are listed below:
----I----10---I----20---I----30
$1,234
The following SAS program is submitted:
data test;
infile `amount;
input @1 salary 6
if _error_ then description = `Problems';
else description = `No Problems';
run;
Which one of the following is the value of the DESCRIPTION variable?
A. ProblemsA raw data file is listed below:
----I----1 0---I----20---I----30
John McCloskey 35 71
June Rosesette 1043
Tineke Jones 9 37
The following SAS program is submitted using the raw data file as input:
data work.homework;
infile `file-specification';
input name $ age height
if age LE 10;
run;
How many observations will the WORK.HOMEWORK data set contain?
B. 2The following SAS program is submitted:
data numrecords;
infile `file-specification';
input@1 patient $15.
relative$ 16-26@;
if relative = `children' then
input diagnosis $15. @;
else if relative = `parents' then
input @28 doctor $15.
clinic $ 44-53
@54diagnosis $15. @;
input age;
run;
How many raw data records are read during each iteration of the DATA step during execution?
A. 1Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only SAS Institute exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your A00-201 exam preparations and SAS Institute certification application, do not hesitate to visit our Vcedump.com to find your solutions here.