SAS Certified Base Programmer 123 Questions (22)
The following SAS DATA step is submitted:
libnametemp 'SAS-data-library'; data temp.report; set sasuser.houses; newvar= price * 1.04; run;
Which one of the following statements is true regarding the program above?
A. The program is reading from a temporary data set and writing to a temporary data set.
B. The program is reading from a temporary data set and writing to a permanent data set.
C. The program is reading from a permanent data set and writing to a temporary data set.
D. The program is reading from a permanent data set and writing to a permanent data set.
Topics:
SAS Base Questions |
1 Comment »
D