- Home
- SASInstitute Certification
- A00-212 Exam
- SASInstitute.A00-212.dumpsfiles Dumps
Free SASInstitute A00-212 Exam Dumps Questions & Answers
| Exam Code/Number: | A00-212Join the discussion |
| Exam Name: | SAS Advanced Programming Exam for SAS 9 |
| Certification: | SASInstitute |
| Question Number: | 185 |
| Publish Date: | May 31, 2026 |
|
Rating
100%
|
|
Total 185 questions
The following SAS program is submitted:
% macro test(var);
% let jobs = BLACKSMITH WORDSMITH SWORDSMITH;
% let type = %index(&jobs,&var);
% mend;
% test(SMITH)
Which one of the following is the resulting value of the macro variable TYPE?
Given the following SAS data sets ONE and TWO:
ONE TWO
OBS COMMON X OBS COMMON Y
1 A 10 1 A 1
2 A 13 2 A 3
3 A 14 3 B 4
4 B 9 4 B 2
5 C 8 5 C 5
6 C 14
The following SAS DATA step is submitted:
data combine;
merge one two;
by common;
run;
Which one of the following represents the data values stored in data set COMBINE?
Which one of the following statements is true regarding a SAS DATA step view?
Given the following SAS data set ONE:
ONE
CATEGORY AGE SALARY BONUS
M 28 200 20
M 25 100 10
M 28 300 10
M 33 300 30
F 18 100 50
F 25 200 10
F 35 400 50
The following SQL program is submitted:
proc sql;
create table two as
select distinct age
from one
where age < 33;
quit;
How many rows are written to the SAS data set TWO?
The following SAS program is submitted:
data new (bufsize = 6144 bufno = 4);
set old;
run;
Which one of the following describes the difference between the usage of BUFSIZE= and BUFNO= options?