Question 49: You have been given below step
data course2017_1 (drop=DATE DURATION);
set course2017 (keep=COURSE_NAME FEE DATE DURATION);
run;
After running this which of the columns will be in the output?
- COURSE_NAME FEE DATE DURATION
- 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 : All the columns marked in DROP= option will be discarded in the output statement. And there will not be any error for keeping
both the KEEP= and DROP= overlapping.
You can access to full explanation to question and answer from this page.