Question 55: You are running below program
data course2017_1;
set course2017 end=last;
if last;
run;
where course2017 has 100 observations. What happen when you run the program?
- It will give error and no output will be generated
- 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 : This type of questions really want to know, do you have hands on or not. Like in the given program nothing is wrong.
END= option to tell SAS to create a temporary numeric value whose value is used to detect the last observation.
You can access to full explanation to question and answer from this page.