nerdexam
SAS_Institute

A00-202 · Question #12

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; Which one of the following…

The correct answer is D. new, X, and COL1. 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; Which one of the following contains all the names of the columns created by the TRANSPOSE procedure?

Options

  • AX, Y, Z, and W
  • Bnew, X, Y, and COL1
  • CNAME, X, and Y
  • Dnew, X, and COL1

How the community answered

(16 responses)
  • A
    6% (1)
  • B
    6% (1)
  • C
    19% (3)
  • D
    69% (11)

Community Discussion

No community discussion yet for this question.

Full A00-202 Practice