Testpassport professional provide SAS Institute Systems Certification A00-212 the newest Q&A, completely covers A00-212 test original topic. With our complete SAS Institute Systems Certification resources, you will minimize your SAS Institute Systems Certification cost and be ready to pass your A00-212 tests on Your First Try, 100% Money Back Guarantee included!
PDF: http://pdf.testpassport.com/A00-212.pdf
SW: http://demo.testpassport.com/A00-212.zip
1. Given the SAS data set ONE: ONEDIVISIONSALES A 1234 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
2. The following SAS program is submitted: data temp; array points{2,3} (10, 15, 20, 25, 30, 35); run;
What impact does the ARRAY statement have in the Program Data Vector (PDV)?
A.The variables named POINTS1, POINTS2, POINTS3, POINTS4, POINTS5, POINTS6 are created in
the PDV.
B.The variables named POINTS10, POINTS15, POINTS20, POINTS25, POINTS30, POINTS35 are
created in the PDV.
C.The variables named POINTS11, POINTS12, POINTS13, POINTS21, POINTS22, POINTS23 are
created in the PDV.
D.No variables are created in the PDV.
Answer: A
3. Given the SAS data sets MATH1A and MATH1B: MATH1AMATH1BNAME FINAME FI Lauren LSmith
M Patel ALauren S Chang ZPatel A Hillier R The following SAS program is submitted: proc sql; select *
from MATH1A select * from MATH1B; quit; The following output is desired: NAME FI Lauren L Patel A
Chang Z Smith M Lauren S Patel A Hillier R Which SQL set operator completes the program and
generates the desired output? A.APPEND CORR
B.EXCEPT CORR
C.OUTER UNION CORR
D.INTERSECT ALL CORR
Answer: C