nerdexam
SAS_Institute

A00-212 · Question #61

The SAS data set ONE contains the variables X,Y,Z and W. The following SAS program is submitted: proc transpose data = one out = trans name = new; by x; var y; run; What are the names of all of the…

The correct answer is B. new, X, and COL1 only. See the full explanation below for the reasoning.

Question

The SAS data set ONE contains the variables X,Y,Z and W. The following SAS program is submitted:

proc transpose data = one out = trans name = new; by x; var y; run; What are the names of all of the columns created by the TRANSPOSE procedure?

Options

  • Anew, X, and Y only
  • Bnew, X, and COL1 only
  • Cnew, Y, and COL1 only
  • Dnew, X, Y, and COL1

How the community answered

(52 responses)
  • A
    10% (5)
  • B
    81% (42)
  • C
    4% (2)
  • D
    6% (3)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice