Multiple choice technology

PROC SORT data = lib.temp out = temp2; By subjid; Run; In which library temp2 is made?

  1. a.) WORK

  2. b.) SASUSER

  3. c.) LIB

  4. d.) SYNTAX ERROR

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

When no library is specified for the output dataset in SAS PROC SORT, the output dataset is created in the temporary WORK library by default. This is SAS's standard behavior for one-level names.