nerdexam
SAS_Institute

A00-281 · Question #27

The data set CM has eight variables including CMTRT and is sorted by STUDYID USUBJID CMSEQ. DATA_BB is created by selecting records from CM where the character string "BLOCKER" is included in CMTRT…

The correct answer is B. proc sort data=CM (keep=usubjid cmstdtc cmtrt) out=data_bb. See the full explanation below for the reasoning.

Question

The data set CM has eight variables including CMTRT and is sorted by STUDYID USUBJID CMSEQ. DATA_BB is created by selecting records from CM where the character string "BLOCKER" is included in CMTRT. Which program was used to produce WORK.DATA_BB?

Exhibit

A00-281 question #27 exhibit

Options

  • Aproc sort data=cm out=data_bb (keep=usubjid cmstdtc cmtrt);
  • Bproc sort data=CM (keep=usubjid cmstdtc cmtrt) out=data_bb;
  • Cdata data_bb;
  • Ddata data_bb;

How the community answered

(44 responses)
  • A
    9% (4)
  • B
    84% (37)
  • C
    5% (2)
  • D
    2% (1)

Community Discussion

No community discussion yet for this question.

Full A00-281 Practice