Free SAS A00-231 Exam Actual Questions

The questions for A00-231 were last updated On Jun 11, 2025

At ValidExamDumps, we consistently monitor updates to the SAS A00-231 exam questions by SAS. Whenever our team identifies changes in the exam questions,exam objectives, exam focus areas or in exam requirements, We immediately update our exam questions for both PDF and online practice exams. This commitment ensures our customers always have access to the most current and accurate questions. By preparing with these actual questions, our customers can successfully pass the SAS 9.4 Base Programming - Performance-Based Exam exam on their first attempt without needing additional materials or study guides.

Other certification materials providers often include outdated or removed questions by SAS in their SAS A00-231 exam. These outdated questions lead to customers failing their SAS 9.4 Base Programming - Performance-Based Exam exam. In contrast, we ensure our questions bank includes only precise and up-to-date questions, guaranteeing their presence in your actual exam. Our main priority is your success in the SAS A00-231 exam, not profiting from selling obsolete exam questions in PDF or Online Practice Test.

 

Question No. 1

Given the following SAS data set WORK.TOYS:

Product Group Price

--------- ----------- -----

Cards Indoors 9.99

Marbles Indoors 8.99

Drum Instruments 12.99

Hula-Hoop Outdoors 12.99

Ball Outdoors 8.49

The following SAS program is submitted:

data WORK.GROUPS;

set WORK.TOYS;

if Group="Outdoors" then Price_Gp="C";

if Price ge 12.99 then Price_Gp="A";

else if Price ge 8.99 then Price_Gp="B";

run;

What will be the value of Price_Gp for Hula-Hoop and Ball? Select one:

Show Answer Hide Answer
Correct Answer: B

Question No. 2

SIMULATION

Scenario:

This project will use data setcert.input04. At any time, you may save your program asprogram04incert\programs. Write a SAS program that will create the data setresults.output04.

In this program, complete the following mathematical actions, in the following order:

Round VAR1 and VAR2 to the nearest integer values.

Multiply the rounded VAR1b y the rounded VAR2 and assign the new value to VAR3.

Add VAR12 through VAR19 (8 variables) together, ignoring missing values. Assign the sum to VAR20.

For observation 16, what is the value ofVAR20? Enter your numeric answer in the space below. Round your answer to the nearest whole number. Save your program asprogram04.sasincert\programs before continuing with the next project

Show Answer Hide Answer
Correct Answer: A

SAS code that could be used to solve this project:

data results.output04;

set cert.input04;

var3=round(var1,1)*round(var2,1);

var20=sum(of var12-var19);

run;

proc print data=results.output04 (obs=16 firstobs=16);

var var3 var20;

run;

If you got this question wrong because you didn't round to the nearest whole number, please know that the actual exam will restrict you to entering only a whole number to prevent this from occurring. The correct answer is: 3175


Question No. 3

Assume thatWork.Ds1andWork.Ds2exist and the following SAS program is submitted:

How many PDF files are created? Select one:

Show Answer Hide Answer
Correct Answer: A

Question No. 4

Assume that Sasuser.One does not exist and that the following SAS program is submitted at the beginning of a new SAS session:

data sasuser.one;

x=1;

y=27;

output one; run;

Select one:

Show Answer Hide Answer
Correct Answer: B

Question No. 5

Given the following SAS data set WORK.CLASS:

Name Gender Age

Anna F 23

Ben M 25

Bob M 21

Brian M 27

Edward M 26

Emma F 32

Joe M 34

Sam F 32

Tom M 24

The following program is submitted: data WORK.MALES WORK.FEMALES(drop=age); set WORK.CLASS; drop gender; if Gender="M" then output WORK.MALES; else if Gender="F" then output WORK.FEMALES; run; How many variables are in the data set WORK.MALES?

Select one:

Show Answer Hide Answer
Correct Answer: C