The contents of two SAS data sets named EMPLOYEE and SALARY are listed below:
EMPLOYEE SALARY
name age name salary
Bruce 30 Bruce 40000
Dan 35 Bruce 35000
Dan 37000
Dan .
The following SAS program is submitted:
data work.empsalary;
merge work.employee (in = inemp)
work.salary (in = insal);
by name;
if inemp and insal;
run;
How many observations will the data set WORK.EMPSALARY contain?
A. 2The following SAS program is submitted:
data numrecords;
infile `file specification';
input@1 patient $15.
relative$ 16-26@;
if relative = `children' then
input @54 diagnosis $15. @;
else if relative = `parents' then
input @28 doctor $15.
clinic $ 44-53
@54 diagnosis $15. @;
input age;
run;
How many raw data records are read during each iteration of the DATA step execution?
A. 1Which one of the following SAS system options displays the time on a report?
A. TIMEThe following SAS program is submitted:
<_insert_ods_code_>
proc means data=SASUSER.SHOES;
where Product in ('Sandal' , 'Slipper' , 'Boot');
run;
<_insert_ods_code_>
Which ODS statements inserted, respectively, in the two location above creates a report stored in an html file?
A. ods html open='sales.html'; ods html close;Given the data set WORK.DEPARTMENTS:

The following SAS program is submitted:


Which output will be generated?
B. C. D.Given the following raw data record:
07Jan2005
Which INFORMAT reads this raw data and stores it as a SAS date value?
A. dmy9.Given the SAS data set WORK.TEMPS with numeric variables Day and Temp and character variable Month:

The following SAS program is submitted:
proc sort data=WORK.TEMPS; by Day descending Month; run;
proc print data=WORK.TEMPS; run;
Which output is correct?

The following SAS program is submitted:
data work.company; set work.dept1(keep = jobcode) work.dept2(rename = (jcode = jobcode)); run;
Which one of the following is the result?
A. The variable JCODE is written to the output data set.A user-defined format has been created using the FORMAT procedure. How is it stored?
A. in a SAS catalogThis question will ask you to provide a segment of missing code. Given the SAS data set WORK.ONE:

The following SAS program is submitted:

The data set WORK.TWO is created, where Day would be the day of the month:

Which expression successfully completed the program and creates the variable Day?
A. day(BeginDate)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-211 exam preparations and SAS Institute certification application, do not hesitate to visit our Vcedump.com to find your solutions here.