🎴 Flashcard Mode

SAS Programming Fundamentals

Card1 / 20
Mastered0
Review0
QuestionClick to flip

Which program displays a listing of all data sets in the SASUSER library?

AnswerClick to flip back
A
proc contents data=sasuser.all;
💡 Explanation:

The PROC CONTENTS procedure with DATA=library.ALL syntax lists all datasets within a SAS library. The ALL keyword is a special SAS keyword that references all members of the specified library. Options A, B, and C have incorrect procedure names or syntax.

Change Mode