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
statements is false?
-
A macro variable can
be defined and referenced anywhere in a SAS program except within
data lines.
-
Macro variables are
always user-defined, and their values remain constant until they are
changed by the user.
-
Macro variables are
text strings that are independent of SAS data sets.
-
The values of macro
variables can be up to 65,534 characters long.
-
Which of the following
TITLE statements correctly references the macro variable Month?
-
title "Total Sales for '&month' ";
-
title "Total Sales for 'month'";
-
title "Total Sales for &month"; ...