- Home
- SASInstitute Certification
- A00-201 Exam
- SASInstitute.A00-201.dumpsfiles Dumps
Free SASInstitute A00-201 Exam Dumps Questions & Answers
| Exam Code/Number: | A00-201Join the discussion |
| Exam Name: | SAS base programming exam |
| Certification: | SASInstitute |
| Question Number: | 140 |
| Publish Date: | May 28, 2026 |
|
Rating
100%
|
|
Total 140 questions
The following SAS program is submitted:
data work.flights;
destination = 'CPH';
select(destination);
when('LHR') city = 'London';
when('CPH') city = 'Copenhagen';
otherwise;
end;
run;
Which one of the following is the value of the CITY variable?
The following SAS program is submitted:
data work.clients;
calls = 6;
do while (calls le 6);
calls + 1;
end;
run;
Which one of the following is the value of the variable CALLS in the output data set?
The following SAS program is submitted:
data work.test;
array agents{4} $ 12 sales1 - sales4;
run;
Which one of the following represents the variables that are contained in the output data set?
A raw data record is listed below:
----|----10---|----20---|----30 s
on,Travis,
The following output is desired:
Which one of the following SAS programs reads the data correctly?
The following SAS program is submitted:
libname sasdata 'SAS-data-library';
data test;
set sasdata.chemists;
if jobcode = 'Chem2'
then description = 'Senior Chemist';
else description = 'Unknown';
run;
A value for the variable JOBCODE is listed below:
JOBCODE
chem2
Which one of the following values does the variable DESCRIPTION contain?