Which step temporarily assign a format to the sales variable?

Which step temporarily assign a format to the sales variable?A . Proc format; Formatsales comma12.; Run; B. Data sasuer. Shoes Set sashelp,sheoes; Format sales comma12.; C. Proc contents data=sashelp.shoes; Format Sales comma12.; Run; D. Proc print data= sashelp. Shoes Format sales comma12.; Run;View AnswerAnswer: D

October 13, 2022 No Comments READ MORE +

How many observations are written to output data set when the following code is submitted?

The sashelp. class data set has 19 observations. Given the frequency information about the Age, shown below: How many observations are written to output data set when the following code is submitted?A . preteen will have 7 observations and teen will have 19 observations B. preteen will have 7 observations...

October 12, 2022 No Comments READ MORE +

Which statement is true regarding variable names?

Which statement is true regarding variable names?A . Variable names are case sensitive. B. Variable names are from 1 to 32 characters in length. C. Variable names are optional when you create a data set D. Variable names can start with a number or an underscoreView AnswerAnswer: B

October 12, 2022 No Comments READ MORE +

Which statement is true regarding the submitted program?

You submit a program and the SAS log is shown below: Which statement is true regarding the submitted program?A . The error in the PROC SORT step caused the program to stop processing B. All three steps ran successfully C. The DATA step and PROC PRINT steps ran without errors....

October 12, 2022 No Comments READ MORE +

Which PROC PRINT option displays variable labels in the report?

Which PROC PRINT option displays variable labels in the report?A . SHOWLABELS B. COLS C. LABELS= D. LABELView AnswerAnswer: D

October 9, 2022 No Comments READ MORE +

Which variables are created with the BY statement?

Given the following code: Which variables are created with the BY statement?A . State. First and State. Last B. First. State and Last. State C. First_State and Last_State D. First. and Last.View AnswerAnswer: B

October 7, 2022 No Comments READ MORE +

Which statement is true about the DROP statement during the compilation phase of the DATA step?

Which statement is true about the DROP statement during the compilation phase of the DATA step?A . The DROP statement flags the variables in the Program Data Vector to be dropped at output. B. The DROP statement determines the order of the variables in the Program Data Vector C. Variables...

October 5, 2022 No Comments READ MORE +

What is the type and length of SnackType?

The data set Snacks contains three variables (productName, Flavor, and Price). Given the program shown below: What is the type and length of SnackType?A . Numeric, 8 B. Character, 7 C. Character, 8 D. Character, 5View AnswerAnswer: A

October 5, 2022 No Comments READ MORE +

How many variables does the WORK REVENUE data set contains?

Given the SAS data set WORK PRODUCTS: The following SAS program is submitted: How many variables does the WORK REVENUE data set contains?A . 4 B. 5 C. 2 D. 3View AnswerAnswer: D

October 4, 2022 No Comments READ MORE +

Which program creates the PROC PRINT report below?

Given the display of the CITIES data set: Which program creates the PROC PRINT report below? A . proc print data=cities showlabelse; label Name= ' Employee Name City =Birth City B. proc print data-cities label noobs; label Name='Employee Name' City=' Birth City’; run; C. proc print data=cities; Name=' Employee Name’;...

October 4, 2022 No Comments READ MORE +