Question 12 :

 What happens if you submit the following program?

 proc sort data=clinic.stress out=maxrates;

 by maxhr;

 run;

 proc print data=maxrates label double noobs;

 label rechr='Recovery Heart Rate;

 var resthr maxhr rechr date;

 where toler='I' and resthr>90;

 sum fee;

 run;

  1. Log messages indicate that the program ran 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

 Ans:4

 Exp : 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.