Online Access Free A00-201 Practice Test

Exam Code:A00-201
Exam Name:SAS base programming exam
Certification Provider:SASInstitute
Free Question Number:140
Posted:Aug 28, 2025
Rating
100%

Question 1

A raw data record is shown below:
07Jan2002
Which one of the following informats would read this value and store it as a SAS date value?

Question 2

Which one of the following ODS statement options terminates output being written to an
HTML file?

Question 3

CORRECT TEXT
The following SAS program is submitted:
data work.new;
length word $7;
amount = 4;
if amount = 4 then word = 'FOUR';
else if amount = 7 then word = 'SEVEN';
else word = 'NONE!!!';
amount = 7;
run;
Which one of the following represents the values of the AMOUNT and WORD variables?

Question 4

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?

Question 5

The observations in the SAS data set WORK.TEST are ordered by the values of the variable SALARY.
The following SAS program is submitted:
proc sort data = work.test out = work.testsorted;
by name;
run;
Which one of the following is the result of the SAS program?

Add Comments

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

insert code
Type the characters from the picture.