Question 60 :

 The contents of the raw data file TYPECOLOR are listed below:

 ---------10--------20--------30

 daisyyellow

 The following SAS program is submitted:

 data flowers;

 infile 'typecolor';

 input type $ 1-5 +1 color $;

 run;

 Which one of the following represents the values of the variables TYPE and COLOR?

  1. type color

 daisy yellow

  1. Get all Questions and Answer from here
  2. You need to have paid subscription to access all questions
  3. Thanks for considering SAS Certification Material

 Correct Answer : 2

 Exp : by default sas proceeds to next column. here after reading 5 colums for type the position of the pointer is at y. due to +1 cursor moves to one column more

 The column numbers at the top are wrong.You can access to full explanation to question and answer from this page

You can access to full explanation to question and answer from this page.