SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Basic Concepts
SAS Programs
 


Question: How many program steps are executed during the processing of the program below?
four
         proc tabulate data=clinic.insure;
            class company;                   
            var total balancedue;
            table company all, mean*total
                  max*balancedue;          
         run;
         proc print data=clinic.insure;
by company;
run;
eight
two
one


  back||next

 

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

Terms of Use & Legal Information | Privacy Statement