Question 42: When you run the below program what will happen (SAS windows environment)

 data work.prices;

 infile '/folders/myfolders/hadoopexam/hesample1.dat';

 input CODE $  NAME$  FEE1 FEE2;

 if NAME='SPARK;

 run;

 proc print data= work.prices ;   

 run;

  1.     Program will run successfully
  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 depends where you run this program. The missing quotation mark in the LABEL statement causes SAS to misinterpret the

 statements in the program. When you submit the program, SAS is unable to resolve the PROC step, and a PROC PRINT running message appears at the top of

 the active window.

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