A00-215 試験問題を無料オンラインアクセス
試験コード: | A00-215 |
試験名称: | SAS Certified Associate: Programming Fundamentals Using SAS 9.4 |
認定資格: | SASInstitute |
無料問題数: | 390 |
更新日: | 2025-09-04 |
You are working on a SAS program that uses a macro to perform a specific task. The macro runs without errors, but the results are not as expected. You suspect that there might be a logic error in the macro. Which of the following steps would be most helpful in identifying and resolving the logic error?
You are working with a dataset containing customer demographics. You need to create a new variable called 'AgeGroup' that categorizes customers into three groups: 'Young' (age < 25), 'Adult' (25 <= age < 50), and 'Senior' (age >= 50). Which of the following code snippets would achieve this using an iterative DO loop?
You have a dataset called 'SALES' with variables 'REGION', 'PRODUCT', 'SALES AMOUNT', and 'PROFIT'. You need to create a new dataset 'HIGH SALES' containing only observations with 'SALES AMOUNT' greater than 1000 and only the variables 'REGION' and 'PROFIT'. Which of the following DATA step code segments achieves this correctly?
You have a dataset with customer demographics and sales dat
a. You want to calculate the average customer age and average purchase amount, displaying both to one decimal place. Which PROC MEANS statement would achieve this with the MAXDEC= option?