Question 55: You have been given below SAS program

 data HADOOPEXAM ;

 infile "/folders/myfolders/hedata/filtered1.dat";

 input COURSE_ID 1-3 COURSE_NAME$ 5-20 LOCATION$ 22-30 FEE 32-35 DATE$ 36-47 DURATION 48-50; Total_FEE=FEE+FEE*18/100;

 file print;

 put COURSE_NAME Total_FEE COURSE_ID LOCATION$ FEE DATE DURATION;

 run;

 In which order the variables will be stored in SAS data set?

  1.          COURSE_NAME Total_FEE COURSE_ID LOCATION$ FEE DATE DURATION
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering SAS Certification Material

 Correct Answer : 3 Exp : It does not matter in what order the variables are in the raw file. This variables will be stored in the order in which they are defined in the order in SAS data set.

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