nerdexam
SAS_Institute

A00-211 · Question #144

Given the SAS data set PERM.STUDENTS: PERM.STUDENTS NAMEAGE ---------------- Alfred14 Alice13 Barbara13 Carol14 The following SAS program is submitted: libname perm SAS data library'; data students…

The correct answer is A. put. See the full explanation below for the reasoning.

Question

Given the SAS data set PERM.STUDENTS:

PERM.STUDENTS NAMEAGE ---------------- Alfred14 Alice13 Barbara13 Carol14 The following SAS program is submitted:

libname perm SAS data library'; data students; set perm.students; file file specification'; put name $ age; <insert statement here> run; The following double-spaced file is desired as output Alfred 14 Alice 13 Barbara 13 Carol 14 Which statement completes the program and creates the desired file?

Options

  • Aput
  • Bput/;
  • Cdouble;
  • Dput null;

How the community answered

(41 responses)
  • A
    78% (32)
  • B
    5% (2)
  • C
    15% (6)
  • D
    2% (1)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice