A00-231 Exam Question 1
This question will ask you to provide a segment of missing code.
Given the SAS data set WORK.ONE:

The following SAS program is submitted:

The data set WORK.TWO is created, where Day would be the day of the month:

Which expression successfully completed the program and creates the variable Day?
Given the SAS data set WORK.ONE:

The following SAS program is submitted:

The data set WORK.TWO is created, where Day would be the day of the month:

Which expression successfully completed the program and creates the variable Day?
A00-231 Exam Question 2
The following SAS program is submitted:
data work.january;
set work.allmonths (keep = product month num_sold cost);
if month = 'Jan' then output work.january;
sales = cost * num_sold;
keep = product sales;
run;
Which variables does the WORK.JANUARY data set contain?
data work.january;
set work.allmonths (keep = product month num_sold cost);
if month = 'Jan' then output work.january;
sales = cost * num_sold;
keep = product sales;
run;
Which variables does the WORK.JANUARY data set contain?
A00-231 Exam Question 3
Which of the following choices is an unacceptable ODS destination for producing output that can be viewed in Microsoft Excel?
A00-231 Exam Question 4
The following program is submitted:

Why does the program fail?

Why does the program fail?
A00-231 Exam Question 5
On which portion(s) of a SAS data set does the PRINT procedure report?