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 the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.