Question 45: Which SAS program was used to create the
raw data file hadoopexam from the SAS data set Work.Scores?
- data _null_;
set work.scores; file 'c:\data\hadoopexam' dlm=','; put name highscore team; run;
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering SAS Certification Material
Ans :3
Exp : You can use the DSD option in the FILE statement to specify that data values containing commas should be enclosed in quotation marks. The DSD option uses a comma as the delimiter by default.
You can access to full explanation to question and answer from this page.