Which action resolve the error messages?

The SAS log of a submitted DATA step is shown below: Which action resolve the error messages?A . Remove the period after the value of Inc.B . Enclose the value of ABC Inc. in quotation marks.C . Add a LENGTH statement to declare the company variable as characterD . Enclose...

January 13, 2021 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 CityB . proc print data-cities label noobs; label Name='Employee Name' City=' Birth City’; run;C . proc print data=cities; Name=' Employee Name’;...

January 12, 2021 No Comments READ MORE +

How does SAS display missing values?

How does SAS display missing values?A . a period for missing numeric and a blank for missing characterB . an N for missing numeric and C for missing characterC . a blank for Doth numeric and character missingD . a blank for missing numeric and a $ for missing characterView...

January 12, 2021 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 observationsB . preteen will have 7 observations...

January 12, 2021 No Comments READ MORE +

Which statements read the input data set SASHELP. SHOES and create the output data set WORK. TOTAL?

Which statements read the input data set SASHELP. SHOES and create the output data set WORK. TOTAL?A . data sashalp.shoes; out work.total;B . data sashelp.shoes; output work.total;C . data work.total; set sashelp.shoes;D . data out=work.total; input sasholp.shoesView AnswerAnswer: A

January 10, 2021 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, 8B . Character, 7C . Character, 8D . Character, 5View AnswerAnswer: A

January 10, 2021 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 processingB . All three steps ran successfullyC . The DATA step and PROC PRINT steps ran without errors.D...

January 5, 2021 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 . SHOWLABELSB . COLSC . LABELS=D . LABELView AnswerAnswer: C

January 5, 2021 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 setD . Variable names can start with a number or an underscoreView AnswerAnswer: B

January 5, 2021 No Comments READ MORE +

Which statement is true regarding a variable?

Which statement is true regarding a variable?A . A character variable can contain alphabetic characters, numeric digits, and other special characters.B . A numeric value must be specified in single or double quotes.C . A character value cannot exceed 200 bytes.D . A numeric variable can contain digits, decimal point,...

January 4, 2021 No Comments READ MORE +