Which one of the following SAS statements correctly computes the average of four numerical values?
A. average = mean(num1 - num4);The following SAS program is submitted:
libname rawdata1 `location of SAS data library'; filename rawdata2 `location of raw data file';
data work.testdata; infile
Which one of the following is needed to complete the program correctly?
A. rawdata1Which one of the following ODS statement options terminates output being written to an HTML file?
A. ENDThe observations in the SAS data set WORK.TEST are ordered by the values of the variable SALARY.
The following SAS program is submitted:
proc sort data = work.test out = work.testsorted;
by name;
run;
Which one of the following is the result of the SAS program?
A. The data set WORKTEST is stored in ascending order by values of the NAME variable.The following SAS program is submitted:
proc means data = sasuser.houses std mean max; var sqfeet run;
Which one of the following is needed to display the standard deviation with only two decimal places?
A. Add the option MAXDEC = 2 to the MEANS procedure statement.The contents of the raw data file NAMENUM are listed below: ----I----10---I----20---I----30 Joe xx
The following SAS program is submitted:
data test; infile `namenum'; input name $ number; run;
Which one of the following is the value of the NUMBER variable?
A. xxThe following SAS program is submitted:
data work.new;
length word $7;
amount = 4;
if amount = 4 then word = `FOUR';
else if amount = 7 then word = `SEVEN';
else word = `NONE!!!';
amount = 7;
run;
Which one of the following represents the values of the AMOUNT and WORD variables?
The contents of the raw data file PRODUCT are listed below:
----I----10---I----20---I----30 24613 $25.31
The following SAS program is submitted:
data inventory; infile `product; input idnum 5. @10 price; run;
Which one of the following is the value of the PRICE variable?
A. 25.31The contents of the raw data file TYPECOLOR are listed below:
----|----10----|----20----|----30
Daisyyellow
The following SAS program is submitted:
data flowers; infile typecolor'; input type $ 1-5 +1 color$; run;
Which one of the following represents the values of the variables TYPE and COLOR?
A. type color daisy yellowThe SAS data set QTR 1_REVENUE is listed below:
The following SAS program is submitted:
proc sort data = qtrl_revenue;
by destination descending revenue;
run;
Which one of the following represents the first observation in the output data set?
destination revenue
YYZ 53634
FRA 62129
FRA 75962
RDU 76254
YYZ 82174
A. destination revenue YYZ 82174Nowadays, 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-201 exam preparations and SAS Institute certification application, do not hesitate to visit our Vcedump.com to find your solutions here.