The following SAS program is submitted:
proc report data = sasuser.houses nowd headline headskip; column style price;
where price < 100000;
title;
run;
Click the Exhibit button to view the output from the REPORT procedure.

Assuming that the PRICE variable is numeric, which one of the following completes the program and produces the output displayed in the exhibit?
A. define style / group `Style'; define price / mean `Price' format = dollar9.;A raw data file is listed below:
----I---- 10---I----20---I----30
squash 1.10 apples 2.25 juice 1.69
The following SAS program is submitted using the raw data file above:
data groceries; infile `file-specification'; input item $ cost;
Which one of the following completes the program and produces a grand total for all COST values?
A. grandtot = sum cost;The SAS data set named WORK.TEST is listed below:
capacity airplanetype staff 150 Large 10
Which one of the following SAS programs created this data set?
A. data work.test capacity = 150; 1100 le capacity le 200 then airplanetype = `Large' and staff = 10; else airplanetype = `Small' and staff = 5; run;Click the Exhibit button to view a listing of the SASUSER.HOUSES data set.
style price
CONDO $79,700
RANCH $68,575
SPLIT $77,983
TWOSTORY $62,550
The following SAS program is submitted:
proc report data = sasuser.houses nowd headline;
column style price;
where price It 100000;
define price / mean width = 9;
title;
run;
The following output is created by the REPORT procedure:

Which one of the following DEFINE statements completes the above program and produces the above output?
A. define style / order width = 9;The following SAS program is submitted:
data test;
set sasuser.employees;
if 2 le years_service le 10 then
amount = 1000;
else if years service gt 10 then
amount = 2000;
else
amount = 0;
amount_per_year = years_service / amount;
run;
Which one of the following values does the variable AMOUNT_PER_YEAR contain if an employee has been with the company for one year?
B. 1000The following SAS program is submitted:
data work.total;
set work.salary(keep = department wagerate);
by department;
if first.department then payroll = 0;
payroll + wagerate;
if last.department;
run;
The SAS data set named WORK.SALARY contains 10 observations for each department, currently ordered by DEPARTMENT.
Which one of the following is true regarding the program above?
A. The BY statement in the DATA step causes a syntax error.The following SAS program is submitted:
data work.test;
First = `lpswich, England';
City_Country = substr(First,1,7)!!', `!!`England'; run;
Which one of the following is the length of the variable CITY_COUNTRY in the output data set?
A. 6The following SAS program is submitted:
data work.test;
Author = `Christie, Agatha';
First = substr(scan(author,2,' ,`),1, 1);
run;
Which one of the following is the value of the variable FIRST in the output data set?
A. AThe following SAS program is submitted and reads 100 records from a raw data file:
data work.total;
infile `file-specification' end = eof;
input name $ salary;
totsal + salary;
run;
Which one of the following IF statements writes the last observation to the output data set?
A. if end = 0;The following SAS program is submitted:
proc sort data=work.employee;
by descending fname;
proc sort data=work.salary;
by descending fname;
data work.empdata;
merge work.employee
work salary;
by fname;
run;
Which one of the following statements explains why the program failed execution?
The SORT procedures contain invalid syntax.
The merged data sets are not permanent SAS data sets. The data sets were not merged in the order by which they were sorted. The RUN statements were omitted after each of the SORT procedures.
Nowadays, 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.