- Home
- SASInstitute Certification
- A00-211 Exam
- SASInstitute.A00-211.dumpsfiles Dumps
Free SASInstitute A00-211 Exam Dumps Questions & Answers
| Exam Code/Number: | A00-211Join the discussion |
| Exam Name: | SAS Base Programming for SAS 9 |
| Certification: | SASInstitute |
| Question Number: | 275 |
| Publish Date: | Jul 21, 2026 |
|
Rating
100%
|
|
Total 275 questions
The SAS data set WORK.ONE contains a numeric variable named Num ana character variable named Char:
WORK.ONE
Num Char
------ ------
1 23
3 23
1 77
The following SAS program is submitted:
proc print data=WORK.ONE;
where Num='1';
run;
What is output?
The following SAS program is submitted:
Which statement is true about the output data set?
When the following SAS program is submitted, the data set SASDATA.PRDSALES contains 5000 observations:
libname sasdata 'SAS-data-library';
options obs = 500;
proc print data = sasdata.prdsales (firstobs = 100);
run;
options obs = max;
proc means data = sasdata.prdsales (firstobs = 500);
run;
How many observations are processed by each procedure?
The following SAS program is submitted:
data work.retail;
cost = '20000';
total = .10 * cost;
run;
Which one of the following is the value of the variable TOTAL in the output data set?
This question will ask you to provide a missing format:
Given the contents of the raw data file 'EMPLOYEE.TXT'
Which SAS information correctly completes the program?