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’; City=’Birth City’; run;
D . options noobs labels; proc print data=cities; display Name=’ Employee Name* city=’Birth City’, run;

Answer: C

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 and teen will have 12 observations
C . preteen will have 26 observations and teen will have 31 observations
D . preteen will have 10 observations and teen will have 9 observations

Answer: C

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, minus sign, currency symbol, and E for scientific notation.

Answer: C