Multiple choice technology programming languages

proc format; value score. 1-10 = 'High' 11-20 = 'Low' ; run; What is true about this statement?

  1. Format score is created in the SAS catalog

  2. The format name should not end with .

  3. The format can be used in DATA steps

  4. The format can be used in PROC steps

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In the value statement of PROC FORMAT, the format name being defined must not end with a period (e.g., value score is correct, whereas value score. is invalid syntax). The period is only used when referencing the format later in DATA or PROC steps.