Multiple choice softskills business skills

In a DATA step, how can you reference a temporary SAS data set named Forecast?

  1. Forecast

  2. Work.Forecast

  3. Sales.Forecast (after assigning the libref Sales)

  4. a and b

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Temporary SAS datasets are stored in the Work library and can be referenced by one-level name (Forecast) or two-level name (Work.Forecast). Both are correct because SAS defaults to Work for one-level names in DATA steps.