Exit A00-212 SAS Advanced Programming Exam for SAS 9
Question 2 of 5
0% complete
Q2 Single choice

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?

  • A

    X, Y, Z, and W

  • B

    _NAME_, X, and Y

  • C

    new, X, and COL1

  • D

    new, X, Y, and_COL1_