Free SASInstitute A00-201 Exam Dumps Questions & Answers
| Exam Code/Number: | A00-201Join the discussion |
| Exam Name: | SAS base programming exam |
| Certification: | SASInstitute |
| Free Question Number: | 140 |
| Publish Date: | Aug 07, 2026 |
| # of views: | 4569 |
|
|
|
The following SAS program is submitted:
data work.test;
Author = 'Agatha Christie';
First = substr(scan(author,1,' ,'),1,1);
run;
Which one of the following is the length of the variable FIRST in the output data set?
The contents of the raw data file PRODUCT are listed below:
----|----10---|----20---|----30
24613 $25.31
The following SAS program is submitted:
data inventory;
infile 'product';
input idnum 5. @10 price;
run;
Which one of the following is the value of the PRICE variable?
The SAS data set BANKS is listed below:
The following SAS program is submitted:
data newbank;
do year = 1 to 3;
set banks;
capital + 5000;
end;
run;
Which one of the following represents how many observations and variables will exist in the
SAS data set NEWBANK?
A realtor has two customers. One customer wants to view a list of homes selling for less than $60,000. The other customer wants to view a list of homes selling for greater than
$100,000.
Assuming the PRICE variable is numeric, which one of the following PRINT procedure steps will select all desired observations?