The contents of the SAS data set named PEPM.STUDENTS are listed below:
name age Alfred 14 Alice 13 Barbaba 13 Carol 14
The following SAS program is submitted using the PERM STUDENTS data set as input libname perm `SAS-data-library'; data students; set perm.students; file `file-specification'; put name $15. @5 age 2.; run;
Which one of the following represents the values written to the output raw data file?
A. ----I----10---I----20---I----30 Alfred 14 Alice 13 Barbara 13 Carol 14The contents of the raw data file TYPECOLOR are listed below:
----I----10---I----20---I----30
Daisyyellow
The following SAS program is submitted:
data flowers;
infile `typecolor; input type$ 1-5+1 color$; run;
Which one of the following represents the values of the variables TYPE and COLOR?
A. type color daisy yellowA SAS PRINT procedure output of the WORKLEVLLS data set is listed below:
Obs name level
1 Frank 1
2 Joan 2
3 Sui 2
4 Jose 3
5 Burt 4
6 Kelly .
7 Juan 1
The following SAS program is submitted:
data work.expertise;
set work.levels;
if level = then
expertise `Unknown';
else if level = 1 then
expertise = `Low';
else if level = 2 or 3 then
expertise = `Medium';
else
expertise = `High';
run;
Which of the following values does the variable EXPERTISE contain?
A. Low, Medium, and High onlyWhich one of the following is true of the SUM statement in a SAS DATA step program?
A. It is only valid in conjunction with a SUM function.Which one or the following SAS system options displays the time on a report?
A. TIMEThe following SAS DATA step is submitted:
libname temp `SAS-data-library';
data temp.report;
set sasuser.houses;
newvar = price * 1.04;
run;
Which one of the following statements is true regarding the program above?
A. The program is reading from a temporary data set and writing to a temporary data set.The following SAS program is submitted:
proc sort data = sasuser.houses out = houses;
by style;
run;
proc print data = houses;
run;
Click on the Exhibit button to view the report produced.

Which of the following SAS statement(s) create(s) the report?
A. id style;The following SAS program is submitted:
libname sasdata `SAS-data-library';
data test;
set sasdata.chemists (keep = job_code);
if job_code `chem3'
then description = `Senior Chemist';
run;
The variable JOB_CODE is a character variable with a length of 6 bytes.
Which one of the following is the length of the variable DESCRIPTION in the output data set?
A. 6 bytesThe following SAS program is submitted:
proc means data = sasuser.shoes;
where product in (`Sandal' , `Slipper' , `Boot');
run;
Which one of the following ODS statements completes the program and sends the report to an HTML file?
A. ods html = `sales.html';The following SAS program is submitted:
libname rawdata1 `location of SAS data library'; filename rawdata2 `location of raw data file';
data work.testdata; infile
Which one of the following is needed to complete the program correctly?
A. rawdata1Nowadays, 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.