Question 41
Given the SAS data set WORK.ORDERS:
Ship_date is a numeric variable containing a SAS data value. A programmer would like to create a new
character variable Ship_date-char that represents the ship date as a character string, such as "February
2,2009'
Which statement will create the new variable Ship_date_char as a character value with a format such as
"February 2, 2009"?
Question 42
This question will ask you to provide a missing option. Given the following SAS program:
Which option needs to be added to wrap the labels to the next line whenever it encounters an asterisk?
Question 43
The following SAS program is submitted:
data one;
addressl = '214 London Way';
run;
data one;
set one;
address = tranwrd(address1, 'Way', 'Drive'); run;
What are the length and value of the variable ADDRESS?
Question 44
Which of the following programs correctly invokes the DATA Step Debugger?
Question 45
The following SAS program is submitted:
proc print data = sasuser.houses;
run;
proc means data = sasuser.shoes;
run;
Which one of the following OPTIONS statements resets the page number to 1 for the second report?
