SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Setting Up Your SAS Session
Setting System Options


Question:
Which of the following statements is true about the program on the right?

       

The NUMBER | NONUMBER option is not set.
   options nodate center;
   proc print data=vcr.sales;
      var salesrep unitsold;
   run;
   options nocenter;
   proc freq data=vcr.sales;
      where unitsold>=30;
      tables salesrep;
      footnote3 '30+ Sales';
   run;
The FREQ procedure output is centered and has no date.
The PRINT procedure output is centered and has no date.


  back||next

 

Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Terms of Use & Legal Information | Privacy Statement