A00-215 無料問題集「SASInstitute SAS Certified Associate: Programming Fundamentals Using SAS 9.4」
You have a SAS dataset named 'customer info' that contains detailed customer information. You need to export this data to an Excel file with specific formatting, including column widths, data types, and header labels. Which of the following code snippets correctly utilizes the LIBNAME statement and XLSX engine to achieve this objective?
正解:A、B、C、D、E
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You have a SAS dataset named 'TRANSACTIONS' with variables 'TRANSACTION D', 'PRODUCT ID', 'CUSTOMER ID', 'AMOUNT', and 'DATE'. You need to create a new dataset called 'HIGH TRANSACTIONS' containing only transactions with amounts greater than $1000, but only if the transaction occurred in the last three months. Which code snippet will achieve this?
正解:D
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You are running a SAS program that reads data from a file and performs calculations. The following error message appears in the SAS log:

Which of the following is the most likely cause of this error, and where would you look in your code to find the issue?

Which of the following is the most likely cause of this error, and where would you look in your code to find the issue?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You are working with a SAS dataset named 'SALES containing information about sales transactions. The dataset has a variable 'PRODUCT ID' and 'QUANTITY SOLD'. You want to create a new dataset 'SALES SUMMARY' that summarizes the total quantity sold for each product. Which code snippet would you use to achieve this?
正解:C
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You are working with a dataset containing sales transactions. You need to create a summary table that shows the total sales for each quarter of the year. Which code snippet would you use to achieve this, incorporating the OUTPUT statement to control output timing?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You have a dataset containing a variable 'PRICE' with values like 123.45, 25.87, 999.99, and 10.00. You want to create a new variable 'DISCOUNT PRICE by applying a discount of 10% to the 'PRICE variable and then rounding the discounted price to the nearest integer using both the ROUND and INT functions. Which code snippet achieves this correctly?
正解:A
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You have a dataset called ' 'SalesData'' with variables ''Region SalesPerson Product'', and ' 'Revenue' '. You need to create a new dataset called ' 'RegionSummary'' that calculates the total revenue for each region, and then identifies the top-performing salesperson in each region (based on total revenue). Which SAS code accurately uses the SUM statement to achieve this, and includes appropriate logic to identify the top salesperson?
正解:A
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You are building an interactive dashboard that displays sales data from a SAS dataset. The dashboard needs to be generated as an HTML file that includes interactive charts and tables. Which of the following methods can be used to achieve this using ODS?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You have a SAS dataset called 'EMPLOYEES' with variables 'EMPLOYEE ID', 'FIRST NAME', 'LAST NAME', 'DEPARTMENT', 'SALARY, 'HIRE DATE'. You need to create a new dataset called 'EMPLOYEES HIGH SALARY' containing only employees with salaries greater than $100,000, and you want to rename the 'SALARY' variable to 'HIGH SALARY'. Which code snippet correctly achieves this?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You have a CSV file named 'sales_data.csv' with the following structure: Product,Region,Sales Apple,North, 100 Banana,South,200 You need to import this data into a SAS dataset named 'SalesData' and ensure that the 'Sales' column is numeric. Which code snippet achieves this correctly?
正解:E
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You are tasked with developing a SAS program to analyze customer demographics. The program reads data from a CSV file and performs several calculations. You compile the program and encounter the following error message: ' 'ERROR 180-322: Statement is not valid or it is used out of context. '' What type of error is this, and what specific aspect of the PUTLOG statement would be most helpful in resolving this issue?
正解:E
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You want to read a SAS data set named 'CUSTOMERS' and update a variable 'Age' based on the following logic: If the 'Age' is missing, set it to the average age of all customers. Otherwise, leave the 'Age' unchanged. Which SAS code snippet correctly implements this logic?
正解:D
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)