The following SAS program is submitted:
data work.pieces;
do while (n It 6);
n + 1; end;
run;
Which one of the following is the value of the variable N in the output data set?
A. 4The following SAS program is submitted:
data work january;
set work.allmonths (keep = product month num_sold cost); if month = `Jan' then output work.january;
sales = cost * num_sold; keep product sales;
run;
Which variables does the WORK.JANUARY data set contain?
A. PRODUCT and SALES onlyThe following SAS program is submitted:
data work.test;
set work.staff (keep = jansales febsales marsales); array diff_sales{3} difsales1 - ditsales3;
array monthly{3} jansales febsales marsales;
run;
Which one of the following represents the new variables that are created?
A. JANSALES, FEBSALES and MARSALESA raw data record is listed below:
----I----10---I----20---I----30 1999/10/25
The following SAS program is submitted:
data projectduration; infile `file-specification'; input date$ 1- 10;
Which one of the following statements completes the program above and computes the duration of the project in days as of today's date?
duration = today( ) - put(date,ddmmyy10.); duration = today( ) - put(date,yymmdd10.); duration = today( ) - input(date,ddmmyy10.); duration = today( ) - input(date,yymmdd10.);
The contents of the raw data file TEAM are listed below:
----I----10---I----20---I----30
Janice 10
Henri 11
Michael 11
Susan 12
The following SAS program is submitted:
data group;
infile `team';
input name $15. age 2.;
file `file-specification';
put name $15. +5 age 2.;
run;
Which one of the following describes the output created?
A. a raw data file onlyThe following SAS program is submitted:
data work.test;
Author = `Agatha Christie';
First = substr(scan(author,1,' ,`)1 ,1);
run;
Which one of the following is the length of the variable FIRST in the output data set?
A. 1The following SAS program is submitted:
data work.company; set work.dept1(keep = jobcode) work.dept2(rename (jcode = jobcode)); run;
Which one of the following is the result?
A. The variable JCODE is written to the output data set.The following SAS program is submitted:
proc format
value score 1 - 50 = `Fail'
51 - 100 = `Pass';
run;
proc report data = work.courses nowd;
column exam;
define exam / display format = score.;
run;
The variable EXAM has a value of 50.5.
How will the EXAM variable value be displayed in the REPORT procedure output?
A. FailThe following SAS program is submitted:
data work.month; d ate = 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:
data work.staff;
JobCategory = `FA';
JobLevel = `1';
Jobcategory = Jobcategory || JobLevel;
run;
Which one of the following is the value of the variable JOBCATEGORY in the output data set?
A. FANowadays, 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.