Quiz

Select the best answer for each question. After completing the quiz, check your answers using the answer key in the appendix.
  1. Which of the statements or clauses in the PROC SQL program below is written incorrectly?
    proc sql;
       select style sqfeet bedrooms
          from certadv.houses
          where sqfeet ge 800;
    quit;
    1. SELECT
    2. FROM
    3. WHERE
    4. Both a and c.
  2. How many statements does the program below contain?
    proc sql;
       select grapes,oranges,
              grapes + oranges as sumsales
          from certadv.produce
          order by sumsales;
    quit;
    1. two
    2. three
    3. four
    4. five
  3. Complete the following PROC SQL query to select the columns Address and SqFeet from the table Certadv.Size and to select Price from the table Certadv.Price. (Only the Address ...

Get SAS Certified Professional Prep Guide 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.