Quiz
Select the best answer
for each question. After completing the quiz, check your answers using
the answer key in the appendix.
-
Which of the following correctly creates a macro variable in a PROC SQL step?
-
proc sql noprint; select avg(Days) into:NumDays from certadv.all; quit; %put &=NumDays;
-
proc sql noprint; select avg(Days) into NumDays from certadv.all; quit; %put &=NumDays;
-
proc sql noprint; select avg(Days) as NumDays from certadv.all; quit; %put &=NumDays;
-
proc sql noprint; select Days into avg(Days) as NumDays from certadv.all; quit; %put &=NumDays;
-
-
Suppose you are asked to create a report of the courses that are offered in all three available locations. The report should not contain any ...
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.