Multiple choice technology programming languages

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

  1. proc contents lib=sasuser.all;

  2. proc contents data=sasuser.all;

  3. proc content data=sasuser.all;

  4. proc contents data=sasuser.all;

Reveal answer Fill a bubble to check yourself
D Correct answer
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.