Chapter Quiz

Select the best answer for each question. After completing the quiz, you can check your answers using the answer key in the appendix.
  1. Using ODS statements, how many types of output can you generate at once?
    1. 1 (only LISTING output)
    2. 2
    3. 3
    4. as many as you want
  2. If ODS is set to its default settings, what types of output are created by the code below?
    ods html file='c:\myhtml.htm'; 
    ods pdf file='c:\mypdf.pdf';
    
    1. HTML and PDF
    2. PDF only
    3. HTML, PDF, and LISTING
    4. No output is created because ODS is closed by default.
  3. What is the purpose of closing the HTML destination in the code shown below?
    ods HTML close; 
    ods pdf ... ;
    
    1. It conserves system resources.
    2. It simplifies your program. ...

Get SAS Certification Prep Guide: Base Programming for SAS 9, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.