SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Understanding DATA Step Processing
Debugging a DATA Step


Question: Which INPUT statement below is incorrect and will result in an invalid data message when executed?
Raw Data File Scores
1---+----10---+----20-
Crump  Lisa   27  120
Diaz   Frank  35  188

  
input LastName $ 1-5 FirstName $ 8-12
      Age 15-16 Weight $ 19-21;
  
input LastName $ 1-5 FirstName $ 8-12
      Age 15-16 Weight 19-21;
  
input LastName $ 1-5 FirstName 8-12
      Age 15-16 Weight 19-21;



  back||next


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

Terms of Use & Legal Information | Privacy Statement