Chapter Quiz
Select the best answer
for each question. Check your answers using the answer key in the
appendix.
-
Which program combines Work.One and Work.Two to produce Work.Three?
-
data work.three; set work.one; set work.two; run; proc print data=work.three; run;
-
data work.three; set work.one work.two; run; proc print data=work.three; run;
-
data work.three; set work.one work.two; by varx; run; proc print data=work.three; run;
-
data work.three; merge work.one work.two; by varx; run; proc print data=work.three; run;
-
-
Which program combines Cert.Props1 and Cert.Props2 to produce Work.Props3?
-
data work.props3; ...
-
Get SAS Certification Prep Guide, 5th Edition now with O’Reilly online learning.
O’Reilly members experience live online training, plus books, videos, and digital content from 200+ publishers.