Statistical Analysis System (SAS) Programming Certification Practice Exam

Disable ads (and more) with a membership for a one time $2.99 payment

Prepare for the SAS Programming Certification Exam. Study with multiple choice questions and detailed explanations. Enhance your exam readiness!

Each practice test/flash card set has 50 randomly selected questions from a bank of over 500. You'll get a new set of questions each time!

Practice this question and more.


If you do not specify the LIBRARY= option, how long do formats exist in Work.Formats?

  1. Only for the current procedure

  2. Only for the current DATA step

  3. Only for the current SAS session

  4. Permanently

The correct answer is: Only for the current SAS session

When formats are created in SAS without specifying the LIBRARY= option, they are stored in the Work.Formats library, which is temporary. This means that the formats will exist only for the duration of the current SAS session. Once the session is ended, or if the Work library is cleared, any formats in Work.Formats disappear as well. This temporary nature allows for flexibility since it enables users to create and use formats without permanently altering the existing libraries. Therefore, attributes associated with Work.Formats, including formats that are created, will not persist beyond the current SAS session, making it the correct choice. The other options refer to different scopes or permanency that do not apply to the usage of formats in Work.Formats.