SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Understanding DATA Step Processing
Compilation Phase


Question: Look at the DATA step below. Not counting the automatic variables, how many variables should the program data vector contain?

          data sales;
               infile new;
               input SalesRep $ 1-8
                     Qtr1 10-17 Qtr2 19-26;
               Total=qtr1+qtr2;
            run;
    2
    3
    4
    6



  back||next


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

Terms of Use & Legal Information | Privacy Statement