Question 39: You have been looking a SAS program written by your team mate. However, he has not done formatting of the code.

 He has used Proc print ,  to display data in the output window.

 Below is the code, which is written by your team mate. Please find the total number of statement in this code.

 proc print data=EmployeeInfo

 label double; 

 var name age salary bonus; where sex='male'; 

 label sex='SEX'; run;

  1. three
  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 : In SAS program formatting does not matter when you run it. And each statement is separated by ; . Hence , there are in total 5 statements as below.

  1. proc print data=EmployeeInfo

 label double; 

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