Free A00-280 Exam Braindumps (page: 3)

Page 2 of 25

Given the following data set:



Which program was used to prepare the data for this PROC PRINT output?

  1. proc sort data=one out=two;
    by subjid;
    run;
  2. proc sort data=one out=two nodupkey;
    by subjid;
    run;
  3. proc sort data=one out=two nodup;
    by subjid;
    run;
  4. proc sort data=one out=two nodupkey;
    by subjid trt;
    run;

Answer(s): B



This question will ask you to provide a line of missing code.

The following SAS program is submitted:



Which statement is required to produce this output?

  1. TABLES site*group /nocol;
  2. TABLES site*group /norow;
  3. TABLES site*group;
  4. TABLES site*group /nocol norow; TABLES site*group /nocol norow;

Answer(s): A



Which statement correctly adds a label to the data set?

  1. DATA two Label="Subjects having duplicate observations";
    set one;
    run;
  2. DATA two;
    Label="Subjects having duplicate observations";
    set one;
    run;
  3. DATA two;
    set one;
    Label dataset="Subjects having duplicate observations";
    run;
  4. DATA two(Label="Subjects having duplicate observations");
    set one;
    run;

Answer(s): D



Given the following data set:



Which SAS program produced this output?

  1. proc sort data=one(where=(age>50)) out=two;
    by subjid;
    run;
  2. proc sort data=one(if=(age>50)) out=two;
    by subjid;
    run;
  3. proc sort data=one out=two;
    where=(age>50);
    by subjid;
    run;
  4. proc sort data=one out=two;
    if age>50;
    by subjid;
    run;

Answer(s): A






Post your Comments and Discuss SAS Institute A00-280 exam with other Community members:

A00-280 Exam Discussions & Posts