The following SAS program is submitted:
data work.test;
set work.staff (keep = jansales febsales marsales);
array diff_sales{3} difsales1 - difsales3;
array monthly{3} jansales febsales marsales;
run;
What new variables are created?
A. JANSALES, FEBSALES and MARSALESWhich of the following programs correctly invokes the DATA Step Debugger?

Given the SAS data set SASDATA TWO:
SASDATA TWO X Y
5 2
3 1
5 6
The following SAS program is submitted:
data sasuser.one two sasdata.three;
set sasdata two;
if x = 5 then output sasuser.one;
else output sasdata two;
run;
What is the result?
A. data set SASUSER.ONE has 5 observations data set SASUSER.TWO has 5 observations data set WORK.OTHER has 3 observationsGiven the SAS data set WORK.ONE:

What value will SAS assign to Total?
A. 3Given the following raw data records in TEXTFILE.TXT:

The following output is desired:

Which SAS program correctly produces the desired output?

Which one of the following statements is true regarding the name of a SAS array?
A. It is saved with the data set.Given the SAS data set PERM.STUDENTS:
PERM.STUDENTS NAME AGE
--------- ------- Alfred 14
Alice 13
Barbara 13
Carol 14
The following SAS program is submitted:
libname perm `SAS data library';
data students;
set perm.students;
file `file specification';
put name $ age;
run;
The following double-spaced file is desired as output
Alfred 14
Alice 13
Barbara 13
Carol 14
Which statement completes the program and creates the desired file?
A. putThe Excel workbook QTR1.XLS contains the following three worksheets:
JAN FEB MAR
Which statement correctly assigns a library reference to the Excel workbook?
A. libname qtrdata 'qtr1.xls';The following SAS program is submitted:
data temp.x; set sasuser.y; run;
What must be submitted prior to this SAS program for the program to execute successfully?
A. A LIBNAME statement for the libref TEMP only must be submitted.The following SAS program is submitted:
data work.new;
length word $7;
amount = 4;
it amount = 4 then word = `FOUR';
else if amount = 7
then word = `SEVEN';
else word = `NONE!!!';
amount = 7;
run;
What are the values of the AMOUNT and WORD variables in SAS dataset work.new?
A. amount word 4 FOURNowadays, 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.