The following SAS program is submitted:
data test;
set chemists;
jobcode = `Chem2'
then description = `Senior Chemist';
else description = `Unknown';
run;
The value for the variable JOBCODE is:
JOBCODE
chem2
What is the value of the variable DESCRIPTION?
A. chem2Which statement is true concerning the SAS automatic variable _ERROR_?
A. It cannot be used in an if/then condition.The following SAS program is submitted:
data work.one;
x = 3;
y = 2;
z = x ** y;
run;
Which one of the following is the value of the variable Z in the output data set?
A. 6The following SAS program is submitted:
data work.month; date = input('13mar2000',date9.); run;
Which one of the following represents the type and length of the variable DATE in the output data set?
A. numeric, 8 bytesThe following SAS program is submitted once:

Which procedure output will appear in test.html?
A. Only the FREQ procedure outputA raw data file is listed below:
--------10-------20-------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;
run;
Which one of the following completes the program and produces a grand total for all COST values?
A. grandtot = sum cost;The following SAS program is submitted:
data WORK.ONE;
Text='Australia, US, Denmark';
Pos=find(Text,'US','i',5);
run;
What value will SAS assign to Pos?
B. 1The following SAS program is submitted:
libname temp `SAS data library';
data work.new;
set temp.jobs;
format newdate mmddw10.;
mdate = month(newdate);
ddate = weekday(newdate);
run;
proc print data = work.new; run;
The variable NEWDATE contains the SAS date value for April 15. 2005.
What output is produced if April 15, 2005 falls on a Friday?
A. Obsnewdate mdate ddate 104/15/2005 APR 6Consider the following data step:

The computed variables City and State have their values assigned using two different methods, a RETAIN statement and an Assignment statement. Which statement regarding this program is true?
A. The RETAIN statement is fine, but the value of City will be truncated to 8 bytes as the LENGTH statement has been omitted.This question will ask you to provide a line of missing code.
The following SAS program is submitted:
proc freq data = WORK.SALES;
run;
The following output is created by the FREQUENCY procedure:

Which statement was used to complete the above program that produced the output?
A. tables region product;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.