Given the following IF/THEN statement:
If Age NE 16 and Age NE 15 then Group-1;
Which assignment statement for variable Group is functionally equivalent to the original statement used in the above data step?
A. if (Age NE 16) or (Age NE 15) then Group=1;The following SAS DATA step executes on Monday, April 25, 2000:
data newstaff;
set staff;
start_date = today();
run;
Which one of the following is the value of the variable START_DATE in the output data set?
A. a character string with the value '04/25/2000'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?
A. 2000This question will ask you to provide lines of missing code. The following SAS program is submitted:

Which statement inserted, respectively, in the two locations indicated above create a report stored in a PDF file?

Given the SAS data set WORKAWARDS:
WORK.AWARDS FNAME POINTS MONTH
Amy 2 4 Amy 1 7 Gerard 3 3 Wang 3 3 Wang 1 12 Wang 1 8
The following SAS program is submitted:
proc sort data = work.awards; by descending fname points; run;
How are the observations sorted?
A. ENAME POINTS MONTH Wang 3 3 Wang 1 12 Wang 1 8 Gerard 3 3 Amy 2 4 Amy 1 7The Excel workbook REGIONS.XLSX contains the following four worksheets:
EAST WEST NORTH SOUTH
The following program is submitted:
libname MYXLS XLSX `c:\ data\ regions.xlsx';
Which PROC PRINT step correctly displays the NORTH worksheet?
A. proc print data=MYXLS.`NORTH'e; run;The following SAS program is submitted:

How many observations are written to the WORK.VOLUME data set?
A. 1Given the following SAS data set WORK.SALES:

The following SAS program is submitted:

Which output is produced?

The 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 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.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.