Exam : SAS A00-212 Title : SAS Advanced Programming Exam for

advertisement
 Exam
: SAS A00-212
Title
: SAS Advanced Programming
Exam for SAS 9
Version : R6.1
www.Prepking.com Prepking - King of Computer Certification
Important Information, Please Read Carefully
Other Prepking products
A) Offline Testing engine
Use the offline Testing engine product to practice the questions in an exam environment.
B) Study Guide (not available for all exams)
Build a foundation of knowledge which will be useful also after passing the exam.
Latest Version
We are constantly reviewing our products. New material is added and old material is
updated. Free updates are available for 90 days after the purchase. You should check your
member zone at Prepking and update 3-4 days before the scheduled exam date.
Here is the procedure to get the latest version:
1.Go towww.Prepking.com
2.Click on Member zone/Log in (right side)
3. Then click My Account
4.The latest versions of all purchased products are downloadable from here. Just click the
links.
For most updates,it is enough just to print the new questions at the end of the new version, not the whole
document.
Feedback
If you spot a possible improvement then please let us know. We always interested in
improving product quality.
Feedback should be send to feedback@Prepking.com. You should include the following:
Exam number, version, page number, question number, and your login ID.
Our experts will answer your mail promptly.
Copyright
Each PDF file contains a unique serial number associated with your particular name and
contact information for security purposes. So if we find out that a particular PDF file is
being distributed by you, Prepking reserves the right to take legal action against you
according to the International Copyright Laws.
Explanations
This product does not include explanations at the moment. If you are interested in
providing explanations for this exam, please contact feedback@Prepking.com.
www.Prepking.com 1. Which SAS procedure changes the name of a permanent format for a variable stored in a SAS data set?
A. MODIFY
B. FORMAT
C. REGISTRY
D. DATASETS
Answer: D
2. The following SAS program is submitted:
%let test = one;
%let one = two;
%let two = three;
%let three = last;
%put what displays is &&&&&test;
What is written to the SAS log?
A. what displays is one
B. what displays is two
C. what displays is three
D. what displays is last
Answer: B
3. Which of the following is true about the COMPRESS= YES data set option?
A. It uses the Ross Data Compression method to compress numeric data.
B. It is most effective with character data that contains repeated characters.
C. It is most effective with numeric data that represents large numeric values.
D. It is most effective with character data that contains patterns, rather than simple repetitions.
Answer: B
4. Given the SAS data set ONE:
ONEREP COST
SMITH 200
SMITH 400
JONES 100
SMITH 600
JONES 100
The following SAS program is submitted:
proc sql;
select rep, avg(cost) as AVERAGE
from one
www.Prepking.com group by rep;
quit;
The following output is desired:
REP AVERAGE
SMITH 400
Which SQL procedure clause completes the program and generates the desired output?
A. having avg(cost) < (select avg(cost) from one)
B. where avg(cost) > (select avg(cost) from one)
C. having avg(cost) > (select avg(cost) from one)
D. where calculated average > (select avg(cost) from one)
Answer: C
5. The following SAS program is submitted:
proc contents data = testdata.one;
run;
Which SQL procedure program produces similar information about the column attributes of the dataset
TESTDATA. ONE?
A. proc sql;
contents testdata.one;
quit;
B. proc sql;
describe testdata.one;
quit;
C. proc sql;
contents table testdata.one;
quit;
D. proc sql;
describe table testdata.one;
quit;
Answer: D
6. The following SAS program is submitted:
%let lib = %upcase(sasuser);
proc sql;
select nvar
from dictionary.tables
where libname = "&lib";
www.Prepking.com quit;
Several SAS data sets exist in the SASUSER library.
What is generated as output?
A. a report showing the numeric columns in each table in SASUSER
B. a report showing the number of columns in each table in SASUSER
C. a report showing the names of the columns in each table in SASUSER
D. a report showing the number of numeric columns in each table in SASUSER
Answer: B
7. Given the SAS data set ONE:
ONENUMVAR
1A
2B
3C
Which SQL procedure program deletes the data set ONE?
A. proc sql;
delete table one;
quit;
B. proc sql;
remove table one;
quit;
C. proc sql;
drop table one;
quit;
D. proc sql;
delete from one;
quit;
Answer: C
8. Given the SAS data set ONE:
ONE JOBLEVEL SALARY
ACC2 300
SEC1 100
SEC2 200
MGR3 700
ACC1 .
ACC3 .
www.Prepking.com MGR2 400
The following SAS data set TWO is required:
TWO JOBLEVEL BONUS
ACC2 30
MGR3 70
MGR2 40
Which SQL procedure program creates the data set TWO?
A. proc sql;
create table two as
select job, level, salary * 0.1 as BONUS
from one
where 3 > 20;
quit;
B. proc sql;
create table two as
select job, level, salary * 0.1 as BONUS
from one
where calculated 3 > 20;
quit;
C. proc sql;
create table two as
select job, level, salary * 0.1 as BONUS
from one
where bonus * 0.1 > 20;
quit;
D. proc sql;
create table two as
select job, level, salary * 0.1 as BONUS
from one
where calculated bonus > 20;
quit;
Answer: D
9. Given the SAS data set ONE:
ONEDIVISIONSALES
A 1234
www.Prepking.com A 3654
B 5678
The following SAS program is submitted:
data _null_;
set one;
by division;
if first.division then
do;
%let mfirst = sales;
end;
run;
What is the value of the macro variable MFIRST when the program finishes execution?
A. 1234
B. 5678
C. null
D. sales
Answer: D
10. The following SAS program is submitted:
%let first = yourname;
%let last = first;
%put &&&last;
What is written to the SAS log?
A. first
B. &&first
C. yourname
D. &yourname
Answer: C
11. The following SAS program is submitted:
%let a = cat;
%macro animal(a = frog);
%let a = bird;
%mend;
%animal(a = pig)
%put a is &a;
What is written to the SAS log?
www.Prepking.com A. a is cat
B. a is pig
C. a is bird
D. a is frog
Answer: A
12. Given the SAS data set SASUSER.HIGHWAY:
SASUSER.HIGHWAY
STEERINGSEATBELTSPEEDSTATUSCOUNT
absentNo0-29serious31
absentNo0-29not1419
absentNo30-49serious191
absentno30-49not2004
absentno50+serious216
The following SAS program is submitted:
%macro highway;
proc sql noprint;
%let numgrp = 6;
select distinct status
into :group1 - :group&numgrp
from sasuser.highway;
quit;
%do i = 1 %to &numgrp;
proc print data = sasuser.highway;
where status = "&&group&i" ;
run;
%end;
%mend;
%highway
How many reports are produced?
A. 0
B. 2
C. 5
D. 6
Answer: B
13. The following SAS program is submitted:
www.Prepking.com %macro execute;
proc print data = sasuser.houses;
run;
%end;
%mend;
%execute
Which statement completes the program so that it executes on Tuesday?
A. %if &sysday = Tuesday %then %do;
B. %if &sysday = 'Tuesday' %then %do;
C. %if &sysdate = Tuesday %then %do;
D. %if &sysdate = 'Tuesday' %then %do;
Answer: A
14. The following SAS program is submitted:
%macro test(var);
%let jobs = BLACKSMITH WORDSMITH SWORDSMITH;
%let type = %index(&jobs, &var);
%put type = &type;
%mend;
%test(SMITH)
What is the value of the macro variable TYPE when the %PUT statement executes?
A. 0
B. 3
C. 6
D. null
Answer: C
15. The SAS data set ONE contains the variables X, Y, Z, and W, and the variable Y has unique values.
The following SAS program is submitted:
proc transpose data = one
out = trans
name = new;
by x;
var y;
run;
What are the names of all of the columns created by the TRANSPOSE procedure?
A. new, X, and Y only
www.Prepking.com B. new, X, and COL1 only
C. new, Y, and COL1 only
D. new, X, Y, and _COL1_
Answer: B
16. Given the SAS data sets ONE and TWO:
ONE TWOCOMMON XCOMMON Y
A 10 A 1
A 13 A 3
A 14 B 4
B9B2
The following SAS program is submitted:
data combine;
set one;
set two;
run;
What data values are stored in data set COMBINE?
A. COMMON XY
A 10 1
A 13 3
A 14 3
B94
B. COMMON XY
A 10 1
A 13 3
B 14 4
B92
C. COMMON XY
A 10 1
A 13 3
A 14 .
B94
B.2
D. COMMON XY
A 10 1
A 13 1
www.Prepking.com 100% Pass Guaranteed or Full Refund
Word to Word Real Exam Questions from Real Test
Buy full version of exam from this link below
http://www.prepking.com/A00-212.htm
Download