nerdexam
SAS_Institute

A00-281 · Question #82

The following SAS program is submitted: You want to store all calculated means and standard deviations in one SAS data set. Which statement must be added to the program?

The correct answer is C. output out=WORK.RESULTS mean=m1 m2 std=s1 s2. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

You want to store all calculated means and standard deviations in one SAS data set. Which statement must be added to the program?

Options

  • Aoutput mean std;
  • Bods output mean=m1 m2 std=s1 s2;
  • Coutput out=WORK.RESULTS mean=m1 m2 std=s1 s2;
  • Dods output out=WORK.RESULTS mean=m1 m2 std=s1 s2;

How the community answered

(49 responses)
  • A
    8% (4)
  • B
    18% (9)
  • C
    69% (34)
  • D
    4% (2)

Community Discussion

No community discussion yet for this question.

Full A00-281 Practice