Chapter Quiz

Select the best answer for each question. Check your answers using the answer key in the appendix.
  1. Which program combines Work.One and Work.Two to produce Work.Three?
    Which program combines Work.One and Work.Two to produce Work.Three?
    1. data work.three;
         set work.one; 
         set work.two; 
      run;
      proc print data=work.three;
      run;
    2. data work.three; 
         set work.one work.two; 
      run;
      proc print data=work.three;
      run;
    3. data work.three;
         set work.one work.two; 
         by varx; 
      run;
      proc print data=work.three;
      run;
    4. data work.three;
         merge work.one work.two; 
         by varx; 
      run;
      proc print data=work.three;
      run;
  2. Which program combines Cert.Props1 and Cert.Props2 to produce Work.Props3?
    1. 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.