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;
- three
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- 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.
- proc print data=EmployeeInfo
label double;
You can access to full explanation to question and answer from this page.