Question 146
This question will ask you to provide lines of missing code.
The following SAS program is submitted:
Which statement inserted, respectively, in the two locations indicated above create a report stored in a PDF file?
Question 147
The following SAS program is submitted:
data WORK.DATE_INFO;
Day="01" ;
Yr=1960 ;
X=mdy(Day,01,Yr) ;
run;
What is the value of the variable X?
Question 148
Given the following raw data records:
The following output is desired:
Which SAS program correctly reads in the raw data?
Question 149
The following SAS program is submitted:
libname temp 'SAS data library';
data temp.sales;
merge temp.sales
work.receipt;
by names;
run;
The input data files are sorted by the NAMES variable:
What is the result?
Question 150
The following SAS program is submitted:
Which statement is true about the output data set?
