Sas A00-211
Sas A00-211
We guarantee you can pass any IT certification exam at your first attempt with just 10-12
hours study of our guides.
Our study guides contain actual exam questions; accurate answers with detailed explanation
verified by experts and all graphics and drag-n-drop exhibits shown just as on the real test.
To test the quality of our guides, you can download the one-fourth portion of any guide from
http://www.certificationking.com absolutely free. You can also download the guides for retired
exams that you might have taken in the past.
For other payment options and any further query, feel free to mail us at
[email protected]
Topic
No. of Questions
Topic 1: Volume A
100
Topic 2: Volume B
118
www.CertificationKing.com
Question No : 1 - (Topic 1)
The following SAS program is submitted:
data one;
date = 04juI2005d;
format date weekdate.; run;
proc print data = one; run;
A. Obs date
1 Monday, July 4, 2005
B. Obs date
1 July4, 2005
C. Obs date
1 04Jul2005
D. Obs date
1 Monday, 07/04/2005
Answer: A
Question No : 2 - (Topic 1)
Given the SAS data set PRICES:
PRICES
Prodid priceproducttypesalesreturns
K1255.10NETWORK152
B132S 2.34HARDWARE30010
R18KY2 1.29SOFTWARE255
3KL8BY 6.37HARDWARE12515
www.CertificationKing.com
A. 0
B. 2
C. 3
D. 4
Answer: D
Question No : 3 - (Topic 1)
Read the table:
Obsstylebedroomsbathspricesqteetstreet
1CONDO21.5800501200MAIN
2CONDO32.5793501300ELM
www.CertificationKing.com
Which DEFINE statement completes the program and produces the desired output?
www.CertificationKing.com
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?
A. 0
B. 1
C. 2
D. 3
Answer: A
Question No : 5 - (Topic 1)
Which statement specifies that records 1 through 10 are to be read from the raw data file
customer.txt?
www.CertificationKing.com
AlRPLANES
TYPE MPG
-------- -----F-18 105
C-130 25
Harrier 75
A-6 110
data gt100;
set airplanes(keep = type mpg load);
load = mpg * 150;
run;
Question No : 7 - (Topic 1)
The following SAS program is submitted:
www.CertificationKing.com
Row Column
Total550.00100.00
M11110.0020.0050.00
12330.0060.0060,00
13110.0020.0033.33
Total550.00100.00
Total11220.00100.00
12550.00100.00
13330.00100.00
Total10100.00
Which option correctly completes the program and creates the report?
A. LIST
B. NOCOLS
C. CROSSLIST
D. NOCROSSTAB
www.CertificationKing.com
Question No : 8 - (Topic 1)
Which statement is true concerning the SAS automatic variable _ERROR_?
Question No : 9 - (Topic 1)
The following SAS program is submitted:
Assuming that SASUSER.ONE exists, how many temporary and permanent SAS data sets
are created?
Question No : 10 - (Topic 1)
Given the SAS data set PEPM.STUDENTS:
www.CertificationKing.com
A. ----I----10---I----20---I----30
Alfred 14
Alice 13
Barbara 13
Carol 14
B. ----I----10---I----20---I----30
Alfr14
Alic13
Barb13a
Carol 4
C. ----I----10---I----20---I----30
Alfr14ed
Alic130
Barb13ara
Caro141
D. ----I----10---I----20---I----30
Alfred14
Alice13
Barbara13
Carol14
www.CertificationKing.com
10
Question No : 11 - (Topic 1)
Given the SAS data set EMPLOYEE INFO:
EMPLOYEE_INFO
IDNumber
Expenses
2542
100.00
3612
133.15
2198
234.34
2198
111.12
Which BY statement completes the program and sorts the data sequentially by ascending
expense values within each ascending IDNUMBER value?
A. by Expenses IDNumber;
B. by IDNumber Expenses;
C. by ascending Expenses IDNumber;
www.CertificationKing.com
11
Question No : 12 - (Topic 1)
The following SAS program is submitted:
The program fails execution due to syntax errors. What is the cause of the syntax error?
Question No : 13 - (Topic 1)
What describes the SAS automatic _ERROR_ variable?
Question No : 14 - (Topic 1)
www.CertificationKing.com
12
data temp.x;
set sasuser.y;
run;
What must be submitted prior to this SAS program for the program to execute
successfully?
Question No : 15 - (Topic 1)
The following program is submitted:
Question No : 16 - (Topic 1)
www.CertificationKing.com
13
----I----1 0---I----20---I----30
Ruth 39 11
Jose 32 22
Sue 30 33
John 40 44
data test;
infile employee;
input employee_name $ 1-4;
if employee_name = Ruth then input idnum 10-11;
else input age 7-8;
run;
What value does the variable IDNUM contain when the name of the employee is Ruth?
A. 11
B. 22
C. 33
D. (missing numeric value)
Answer: B
Question No : 17 - (Topic 1)
Given the following raw data record:
07Jan2005
Which INFORMAT reads this raw data and stores it as a SAS date value?
www.CertificationKing.com
14
Question No : 18 - (Topic 1)
The following SAS program is submitted:
data work.accounting;
set work.department;
length jobcode $ 12;
jobcode=FAl;
run;
The WORK.DEPARTMENT data set contains a character variable named JOBCODE with
a length of 5. What is the result?
Question No : 19 - (Topic 1)
The following SAS program is submitted;
data combine;
country = Italy, Russia, ireland;
found = find(country, i);
www.CertificationKing.com
15
A. 1
B. 12
C. Italy
D. Russia
Answer: B
Question No : 20 - (Topic 1)
Given the SAS data set EMPLOYEES:
EMPLOYEES
NAME SALARY
-------- -----------Innis60000
Jolli50000
Ellis55000
Liu45000
A. Liu only
B. Innis and Ellis only
C. Innis, Ellis, and Liu only
D. Innis, Jolli, Ellis, and Liu
www.CertificationKing.com
16
Question No : 21 - (Topic 1)
The SAS data set named WORK.SALARY contains 10 observations for each department,
and is currently ordered by Department. The following SAS program is submitted:
Question No : 22 - (Topic 1)
The following SAS program is submitted:
www.CertificationKing.com
17
Question No : 23 - (Topic 1)
The following SAS program is submitted:
Question No : 24 - (Topic 1)
Given the following data step:
www.CertificationKing.com
18
After data step execution, what will data set WORK.GEO contain?
www.CertificationKing.com
19
Question No : 25 - (Topic 1)
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 FOUR
B. amount word
4 NONE!!!
C. amount word
7 FOUR
D. amount word
7 SEVEN
Answer: C
www.CertificationKing.com
20
--------10-------20-------30
24613 $25.31
The following SAS program is submitted:
data inventory;
infile 'product';
input idnum 5. @10 price;
run;
A. 25.31
B. $25.31
C. . (missing numeric value)
D. No value is stored as the program fails to execute due to errors.
Answer: C
Question No : 27 - (Topic 1)
The following SAS program is submitted:
www.CertificationKing.com
21
A. All Products
B. Sales Report for Last Month All Products
C. All Products All Regions All Figures in Thousands of Dollars
D. Sales Report for Last Month All Products All Regions All Figures in Thousands of
Dollars
Answer: B
Question No : 28 - (Topic 1)
Given the contents of the raw data file TYPECOLOR:
----I----10---I----20---I----30
Daisyyellow
The following SAS program is submitted:
data flowers;
infile typecolor;
input type$ 1-5+1 color$;
run;
A. type color
daisygreen
B. type color
daisy ellow
C. type color
daisyyellow (missing character value)
D. No values are stored for the TYPE and COLOR variables.
Answer: B
Question No : 29 - (Topic 1)
www.CertificationKing.com
22
data work.test;
array items{3} _temporary_;
run;
What are the names of the variable(s) in the WORKTEST data set?
A. ITEMS
B. ITEMS1, ITEMS2, ITEMS3
C. No variables are created because it is a temporary array.
D. The program fails to execute because there are no variables listed on the ARRAY
statement.
Answer: C
Question No : 30 - (Topic 1)
The following SAS program is submitted:
data one;
addressl = 214 London Way;
run;
data one;
set one;
address = tranwrd(address1, Way, Drive); run;
www.CertificationKing.com
23
Question No : 31 - (Topic 1)
The following SAS program is submitted:
data work.sets;
do until (prod gt 6);
prod + 1;
end;
run;
What is the value of the variable PROD in the output data set?
A. 6
B. 7
C. 8
D. (missing numeric)
Answer: B
Question No : 32 - (Topic 1)
The following output is created by the FREQUENCY procedure:
www.CertificationKing.com
24
Which TABLES statement was used to completed the following program that produced the
output?
Question No : 33 - (Topic 1)
A user-defined format has been created using the FORMAT procedure. Where is it stored?
www.CertificationKing.com
25
Question No : 34 - (Topic 1)
Given the SAS data set WORK.TEMPS:
www.CertificationKing.com
26
A. Option A
B. Option B
C. Option C
D. Option D
Answer: C
www.CertificationKing.com
27
www.CertificationKing.com
28
Question No : 36 - (Topic 1)
Given the following code:
A. 11
B. 15
C. 10 or fewer
D. 11 or fewer
Answer: D
Question No : 37 - (Topic 1)
data WORK.ACCOUNTING;
set WORK.DEPARTMENT;
label Jobcode='Job Description';
run;
www.CertificationKing.com
29
Question No : 38 - (Topic 1)
The SAS data set SASUSER.HOUSES contains a variable PRICE which has been
assigned a permanent label of Asking Price. Which SAS program temporarily replaces
the label Asking Price with the label Sale Price in the output?
Question No : 39 - (Topic 1)
Given the SAS data set WORKAWARDS:
WORK.AWARDS
FNAMEPOINTSMONTH
---------------------------------Amy24
Amy17
Gerard33
Wang33
Wang112
Wang18
www.CertificationKing.com
30
Question No : 40 - (Topic 1)
www.CertificationKing.com
31
proc format;
value agegrp
low-12 ='Pre-Teen'
13-high = 'Teen';
run;
proc means data=SASHELP.CLASS;
var Height;
class Sex Age;
format Age agegrp.;
run;
The following results were generated to display only specific statistics and limit the
decimals with the modification: Which statement below was modified or added to generate
the results above:
Question No : 41 - (Topic 1)
www.CertificationKing.com
32
A. Type=daisy, Color=yellow
B. Type=daisy, Color=w
C. Type=daisy, Color=daisyyellow
D. Type=daisy, Color=
Answer: D
Question No : 42 - (Topic 1)
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;
www.CertificationKing.com
33
The SAS data set WORK.SALARY, currently ordered by DEPARTMENT, contains 100
observations for each of 5 departments.
What is the result?
Question No : 43 - (Topic 1)
The SAS data set PETS is sorted by the variables TYPE and BREED.
The following SAS program is submitted:
www.CertificationKing.com
34
data work.sales;
do year = 1 to 5;
do month=1 to 12;
x+1;
output
end;
end;
run;
How many observations are written the WORK SALES data set?
A. 0
B. 1
C. 5
D. 60
Answer: D
Question No : 45 - (Topic 1)
The following SAS program is submitted:
data WORK.ONE;
Text=Australia, US, Denmark;
Pos=find(Text,US,i,5);
run;
www.CertificationKing.com
35
Question No : 46 - (Topic 1)
The following SAS program is submitted:
data test;
infile file specification;
input name $ amount@@;
run;
Question No : 47 - (Topic 1)
Given the contents of the raw data file EMPLOYEE:
----|----10----|----20----|----30
Alan
19/2/2004
ACCT
Rob
www.CertificationKing.com
36
A. date9.
B. ddmmyyyy9.
C. ddmmyy10.
D. ddmmyyyy10.
Answer: C
Question No : 48 - (Topic 1)
Given the SAS data set PERM.STUDENTS:
PERM.STUDENTS NAMEAGE
---------------- Alfred14
Alice13
Barbara13
www.CertificationKing.com
37
Alfred 14
Alice 13
Barbara 13
Carol 14
Which statement completes the program and creates the desired file?
A. put
B. put/;
C. double;
D. put _null_;
Answer: A
Question No : 49 - (Topic 1)
The following SAS program is submitted:
data work.flights;
www.CertificationKing.com
38
A. Other
B. Copenh
C. Copenhagen
D. (missing character value)
Answer: A
Question No : 50 - (Topic 1)
Given the raw data record DEPT:
----|----10---|----20---|----30
Printing 750
The following SAS program is submitted:
data bonus;
infile dept;
inputdept$ 1-11 number 13- 15;
<insert statement here>
run;
Which SAS statement completes the program and results in a value of Printing750 for the
www.CertificationKing.com
39
Question No : 51 - (Topic 1)
The Excel workbook QTR1.XLS contains the following three worksheets:
JAN
FEB
MAR
Question No : 52 - (Topic 1)
The SAS data set WORK.ONE contains a numeric variable named Num ana character
variable named Char:
WORK.ONE
Num Char
------ -----1 23
www.CertificationKing.com
40
What is output?
A. Num Char
--- ---1 23
B. Num Char
--- ---1 23
1 77
C. Num Char
--- ---1 23
3 23
1 77
D. No output is generated.
Answer: D
Question No : 53 - (Topic 1)
The SAS data sets WORK.EMPLOYEE and WORK.SALARY are shown below:
WORK.EMPLOYEE WORK.SALARY
fname age name salary
Bruce 30 Bruce 25000
Dan 40 Bruce 35000
Dan 25000
www.CertificationKing.com
41
by fname;
totsal + salary;
run;
Which one of the following statements completes the merge of the two data sets by the
FNAME variable?
A. merge work.employee
work.salary (fname = name);
B. merge work.employee
work.salary (name = fname);
C. merge work.employee
work.salary (rename = (fname = name));
D. merge work.employee
work.salary (rename = (name = fname));
Answer: D
Question No : 54 - (Topic 1)
Which statement correctly computes the average of four numerical values?
Question No : 55 - (Topic 1)
Which program displays a listing of all data sets in the SASUSER library?
www.CertificationKing.com
42
Question No : 56 - (Topic 1)
The following SAS program is submitted:
data combine;
prefix=505;
middle=6465 ;
end=09090;
<insert statement here>;
run;
Which statement successfully completes the program so that TOTAL has a value of 505646509090?
Question No : 57 - (Topic 1)
What is the purpose or the MISSOVER option on the INFILE statement?
A. It prevents SAS from loading a new record when the end of the current record is
www.CertificationKing.com
43
Question No : 58 - (Topic 1)
The following SAS program is submitted:
proc contents data = sashelp.class varnum; quit;
Question No : 59 - (Topic 1)
The following SAS program is submitted:
Data_null_;
set old;
put sales 1 sales2;
run;
www.CertificationKing.com
44
Question No : 60 - (Topic 1)
Given the SAS data set SASDATA TWO:
SASDATA TWO
XY
---52
31
56
The following SAS program is submitted:
45
Question No : 61 - (Topic 1)
Which of the following choices is an unacceptable ODS destination for producing output
that can be viewed in Microsoft Excel?
A. MSOFFICE2K
B. EXCELXP
C. CSVALL
D. WINXP
Answer: D
Question No : 62 - (Topic 1)
Read the table
www.CertificationKing.com
46
www.CertificationKing.com
47
Which TABLES statement(s) completed the program and produced the output?
Question No : 63 - (Topic 1)
Given the SAS data set WORK.EMP_NAME:
www.CertificationKing.com
48
How many observations are in data set WORK.ALL after submitting the program?
A. 1
B. 2
C. 3
D. 5
Answer: B
Question No : 64 - (Topic 1)
The following SAS program is submitted:
www.CertificationKing.com
49
Question No : 65 - (Topic 1)
The following SAS program is submitted:
data test;
set sasuser.employees;
if 2 le years_service le 10 then
amount = 1000;
else amount = 0;
amount_per_year = years_service / amount
run;
What is the value of the variable AMOUNT_PER_YEAR if an employee has been with the
company for one year?
A. 0
B. 0.001
C. 1
D. . (missing numeric value)
Answer: D
Question No : 66 - (Topic 1)
www.CertificationKing.com
50