Given the AIRPLANES data set
AlRPLANES TYPE MPG
F-18 105
C-130 25
Harrier 75
A-6 110
The following SAS program is submitted:
data gt100;
set airplanes(keep = type mpg load);
load = mpg * 150;
run;
The program fails to execute due to syntax errors.
What is the cause of the syntax error?
A. MPG is not a numeric variable.The following SAS program is submitted:
data stats;
set revenue;
array weekly{5} mon tue wed thu fri;
total = weekly{i} * .25;
output;
end;
run;
Which one of the following DO statements completes the program and processes the elements of the WEEKLY array?
A. do i = 1 to 5;The following SAS program is submitted:

What is the value of the second variable in the data set WORK.AUTHORS?
A. HemingwayWhich one of the following SAS DATA steps saves the temporary data set named MYDATA as a permanent data set?
A. libname sasdata 'SAS-data-library'; data sasdata.mydata; copy mydata; run;The following SAS program is submitted:
data work.total;
set work.salary(keep = department wagerate);
by department;
if first.department
then payroll = 0;
payroll + wagerate;
if last.department;
run;
The SAS data set named WORKSALARY contains 10 observations for each department, and is currently ordered by DEPARTMENT.
Which statement is true?
A. The BY statement in the DATA step causes a syntax error.Given the SAS data set WORK.P2000:

And the SAS data set WORK.P2008:

The following output is desired:

Which SAS program correctly combines the data?

The following output is created by the FREQUENCY procedure:

1 23
3 23
1 77
Which TABLES statement was used to completed the following program that produced the output?
proc freq data=sales; <_insert_code_> run;
A. tables region product;Which statement describes a characteristic of the SAS automatic variable _ERROR_?
A. The _ERROR_ variable maintains a count of the number of data errors in a DATA step.The following SAS program is submitted:
data combine; prefix='505'; middle='6465 `; end='09090';
Which statement successfully completes the program so that TOTAL has a value of 505-6465-09090?
A. total = cat('-', prefix, middle, end);Given the SAS data set QTR 1_REVENUE:
destination revenue YYZ 53634 FRA 62129 FRA 75962 RDU 76254 YYZ 82174
The following SAS program is submitted:
proc sort data = qtr1_revenue; by destination descending revenue; run;
What is the first observation in the output data set?
A. destination revenue FRA 62129Nowadays, 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.