Select the best answer
for each question. Check your answers using the answer key in the
appendix.
-
Suppose you do not specify
the LIBRARY= option and your formats are stored in Work.Formats. How
long do they exist?
-
only for the current
procedure
-
only for the current
DATA step
-
only for the current
SAS session
-
-
Which of the following
statements store your formats in a permanent catalog?
-
libname library 'c:\sas\formats\lib';
proc format lib=library
...;
-
libname library 'c:\sas\formats\lib';
format lib=library
...;
-
library='c:\sas\formats\lib';
proc format library
...;
-
library='c:\sas\formats\lib';
proc library
...;
-
When you create a format with the VALUE statement, ...