A00-215 Exam Question 86
You have two SAS datasets, 'SALES' and 'CUSTOMERS', with a common key variable 'CUSTOMER ID. You need to merge these datasets, but you only want to keep records from 'SALES' that have a corresponding match in 'CUSTOMERS'. Which of the following code snippets correctly accomplishes this using the IN= option within a MERGE statement?
A00-215 Exam Question 87
You have a dataset with a variable named 'SALES AMOUNT representing the sales value. You want to create a new variable 'SALES CATEGORY' that categorizes sales into 'Low', 'Medium', and 'High' based on the following criteria: Low: SALES AMOUNT < 1000 Medium: 1000 <= SALES AMOUNT < 5000 High: SALES AMOUNT >= 5000 Which of the following DATA step code segments will correctly accomplish this task?
A00-215 Exam Question 88
Given the following DATA step:

What is the value of average?
Enter your numeric answer in the space above.

What is the value of average?
Enter your numeric answer in the space above.
A00-215 Exam Question 89
You have a dataset 'Orders' with variables 'CustomerlD', 'OrderDate', 'OrderStatus', and 'OrderAmount'. You need to generate a report that summarizes the average 'OrderAmount' for each 'OrderStatus' and 'OrderDate' combination. Additionally, you want to include the total number of orders for each order status. Which PROC MEANS statement would you use to achieve this, while also ensuring the output dataset includes the 'OrderDate' variable for further analysis?
A00-215 Exam Question 90
You are analyzing a SAS log and encounter the following message: "NOTE: The data set WORK. TEMP DATA has 0 observations and 10 variables.". Which of the following statements is TRUE regarding this message?