The SAS data set WORK STAFF has three variables:
Name is character with a length of 8 DOB is numeric with a length of 8 Start_Date is numeric with a length of 8
The following SAS program is submitted:

What is the length of the Name variable in the data set WORK STAFF_UPDATE?
A. 10The 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; if 100 le capacity le 200 then airplanetype = 'Large' and staff = 10; else airplanetype = 'Small' and staff = 5; run;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;
Why does the program rail to execute?
A. The SORT procedures contain invalid syntax.A raw data file is listed below:
--------10-------20-------30
John McCloskey 35 71
June Rosesette 10 43
Tineke Jones 9 37
The following SAS program is submitted using the raw data file as input:
data work.homework;
infile 'file-specification';
input name $ age height;
if age LE 10;
run;
How many observations will the WORK.HOMEWORK data set contain?
B. 2Given the raw data file `DEPENDENTS.TXT':

The following SAS program is submitted:

What will be the value of _ERROR_ in the Program Data Vector for each iteration of the DATA step?

Consider the data step:

Which of the following assignment statements for variable group are functionally equivalent to the original statement used in the above data step?
A. if Age not in(15,16) then Group=1; else Group=2;The following SAS program is submitted:

The program fails execution due to syntax errors. What is the cause of the syntax error?
A. The variable MONTHSALES does not exist.The contents of the raw data file FURNITURE are listed below:
--------10-------20-------30
chair,,table
chair,couch,table
The following SAS program is submitted:
data stock;
infile 'furniture' dsd;
input item1 $ item2 $ item3 $;
run;
Which one of the following is the value of the variable named ITEM2 in the first observation of the output data set?
A. tableGiven the raw data file YEARAMT:
----|---10---|---20---|----30
1901 2
1905 1
1910 6
1925 .
1941 1
The following SAS program is submitted:
data coins;
infile `yearamt';
input year quantity;
run;
Which statement(s) completed the program and produced a non-missing value for the variable TOTQUANTITY in the final observation of the output data set?
A. totquantity + quantity;Given the SAS data set AGES: AGES AGE
The variable AGE contains character values. The following SAS program is submitted:
data subset;
set ages;
where age> 12;
run;
How many observations are written out to the data set SUBSET?
B. 1Nowadays, 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.