Question 57: Is there anything wrong with the below 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;

 run;

  1.          You must put semicolon on each line. Semicolon missing on line 2 and 3
  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 : 4 Exp : There is no issue, if you use the variable in a calculation and update the same variable as in the given program.

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