Online Access Free A00-211 Practice Test

Exam Code:A00-211
Exam Name:SAS Base Programming for SAS 9
Certification Provider:SASInstitute
Free Question Number:275
Posted:Jun 02, 2026
Rating
100%

Question 1

The SAS data set PETS is sorted by the variables TYPE and BREED.
The following SAS program is submitted:
proc print data = pets;
var type breed;
sum number;
run;
What is the result?

Question 2

Given the contents of the raw data file TYPECOLOR:
----I----10---I----20---I----30
Daisyyellow
The following SAS program is submitted:
data flowers;
infile 'typecolor';
input type$ 1-5+1 color$;
run;
What are the values of the variables TYPE and COLOR?

Question 3

The following SAS program is submitted:
data one;
addressl = '214 London Way';
run;
data one;
set one;
address = tranwrd(address1, 'Way', 'Drive'); run;
What are the length and value of the variable ADDRESS?

Question 4

The contents of the raw data file SIZE are listed below:
--------10-------20-------30
72 95
The following SAS program is submitted:
data test;
infile 'size';
input @1 height 2. @4 weight 2;
run;
Which one of the following is the value of the variable WEIGHT in the output data set?

Question 5

The following SAS program is submitted:

What will the data set WORK.TEST contain?

Add Comments

Your email address will not be published. Required fields are marked *

insert code
Type the characters from the picture.