SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Basic Concepts
SAS Programs


Question: How many individual SAS statements does this program contain?         
 
eight
    data supply;                     
       infile tv;
       input brand $ 1-8 model $ 9-14
             color $ 15-20 stock 21-23
             ordered 24-26 sold 27-29;
    run;
    proc print data=supply;
    run;
                                  
six
two


 

back||next


 


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

Terms of Use & Legal Information | Privacy Statement