SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Basic Concepts
SAS Programs


Question: How many PROC steps does the program below contain?               
 
one
         data profit;                            
            infile sales;                        
            input year 1-4 expenses 6-10         
                  revenue 12-16;                 
         run;
         proc means data=profit;                 
         run;
         proc print data=profit;                 
         run;
         proc plot data=profit;                  
            plot revenue*year;                   
         run;                                    
                                  
two
three


 

back||next


 


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

Terms of Use & Legal Information | Privacy Statement