Multiple choice technology PROC SORT data = lib.temp out = temp2; By subjid; Run; In which library temp2 is made? a.) WORK b.) SASUSER c.) LIB 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.