The following SAS program is submitted:
data WORK.PRODUCTS;
Prod=1;
do while (Prod LE 7);
Prod + 1;
end;
run;
What is the value of the variable Prod in the output data set?
A. 7The following SAS program is submitted:
Data WORK.COMPRESS; ID = `1968 05-10 567'; NewID = compress (ID, "-"); run;
What will the value of NewID be in the WORK.COMPRESS data set?
A. 1968 05-10 567This questions will ask you to provide two missing variable names.
The following SAS program is submitted:
data WORK.TOTAL;
set WORK.SALARY;
by Department Gender;
if First.
Payroll+Wagerate;
if Last.
run;
The SAS data set WORK.SALARY is currently ordered by Gender within Department. Which inserted code will accumulate subtotals for each Gender within Department?
variable 2: Department
A. variable 1: GenderGiven 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?

Given the following data set WORK.TOYS:

The following SAS program s submitted:
data WORK.GROUPS;
set WORK.TOYS;
if Product="Cards" then Group_Desc="Indoors";
else if Product in ("Drum", "Recorder") then Group_Desc="Instruments";
else if Product="Ball" then Group_Desc="Outdoors";
run;
proc print data=WORK.GROUPS noobs;
run;
Which output is produced?

The 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;A SAS programmer assigns a library reference to an existing Excel workbook named exceldata.xlsx. Using a DATA step, the programmer attempts to create a worksheet named outdata in this Excel workbook. However, the Excel workbook already contains a worksheet named outdata.
What will happen?
A. A second copy of the workbook named exceldata(2).xlsx. will be created with the new worksheet outdata.When SAS encounters a data when reading from a raw data file, which action will occur?
A. SAS will write an ERROR message to the SAS log and suspend execution.The SAS data set WORK.ONE contains a numeric variable named Num and a character variable named Char:

The following SAS program is submitted:
proc print data=WORK.ONE; where Num=contains (1); run;
Which output is generated?

Given the SAS data set WORK. PRODUCTS:

The following SAS program is submitted:
data WORK. REVENUE (drop=Sales Returns);
set WORK. PRODUCTS (keep=ProdId Price Sales Returns);
Revenue-Price* (Sales-Returns);
run;
How many variables does the WORK.REVENUE data set contain?
A. 5Nowadays, 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.