By admin | September 4, 2009

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.

One comment | Add One

  1. admin - 09/4/2009 at 12:53 pm

    D

Leave a Comment

Leave a Reply

Your email address will not be published.