nerdexam
SAS_Institute

A00-211 · Question #28

The following SAS program is submitted: data work.test; array items{3} _temporary_; run; What are the names of the variable(s) in the WORKTEST data set?

The correct answer is C. No variables are created because it is a temporary array. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

data work.test; array items{3} temporary; run; What are the names of the variable(s) in the WORKTEST data set?

Options

  • AITEMS
  • BITEMS1, ITEMS2, ITEMS3
  • CNo variables are created because it is a temporary array.
  • DThe program fails to execute because there are no variables listed on the ARRAY statement.

How the community answered

(53 responses)
  • A
    6% (3)
  • B
    13% (7)
  • C
    79% (42)
  • D
    2% (1)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice