nerdexam
SAS_Institute

A00-212 · Question #67

The following SAS program is submitted: data temp; array points{2,3} (10, 15, 20, 25, 30, 35); run; What impact does the ARRAY statement have in the program Data vector (PDV)?

The correct answer is A. The variables named POINTS1, POINTS2, POINTS3, POINTS4, POINTS5, POINTS6 are. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

data temp; array points{2,3} (10, 15, 20, 25, 30, 35); run; What impact does the ARRAY statement have in the program Data vector (PDV)?

Options

  • AThe variables named POINTS1, POINTS2, POINTS3, POINTS4, POINTS5, POINTS6 are
  • BThe variables named POINTS10, POINTS15, POINTS20, POINTS25, POINTS30, POINTS35
  • CThe variables named POINTS11, POINTS12, POINTS13, POINTS21, POINTS22, POINTS23
  • DNo variables are created in the PDV.

How the community answered

(19 responses)
  • A
    84% (16)
  • B
    11% (2)
  • C
    5% (1)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice