A00-280 Clinical Trials Programming Using SAS 9

Loading demo links...

Showing 4–6 of 6 questions

Question 4

This question will ask you to provide a missing option.

The following program is submitted to create a transport file for multiple data sets:

C:\Documents and Settings\USERSE-NEW2\Desktop\1.jpg

Which option will limit the files that are copied to type data?

Select an option, then click Submit answer.

  • intype=data

  • memtype=data

  • entrytype=data

  • include=data

Question 5

The following SAS program is submitted:

%let Av=age;

%macro LABD(Av=weight);

%let Av=gend; %mend;

%LABD(Av=height)

%put Av is &Av;

What will be written to the SAS log?

Select an option, then click Submit answer.

  • Av is weight

  • Av is gend

  • Av is height

  • Av is age

Question 6

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.

C:\Documents and Settings\USERSE-NEW2\Desktop\1.jpg

Which program was used to produce WORK.DATA_BB?

 

Select an option, then click Submit answer.

  • proc sort data=cm out=data_bb (keep=usubjid cmstdtc cmtrt);
    by usubjid CMSTDTC;
    where cmtrt in('BLOCKER');
    run;

     

  • proc sort data=CM (keep=usubjid cmstdtc cmtrt) out=data_bb;
    by usubjid CMSTDTC;
    where cmtrt contains 'BLOCKER';
    run;

     

  • data data_bb;
    set cm (where=(find(cmtrt,'BLOCKER','i')>0));
    by usubjid CMSTDTC;
    run;

     

  • data data_bb;
    set cm (keep=usubjid cmstdtc cmtrt);
    by usubjid CMSTDTC;
    where cmtrt in('BLOCKER');
    run;