최신SASInstitute Clinical Trials Programming Using SAS 9.4 - A00-282무료샘플문제
문제1
Given the following demographic dataset:

Which program will generate a report where observations will appear in order by SITE SUBJECT and display column headers for each variable defined in the column statement?
Given the following demographic dataset:

Which program will generate a report where observations will appear in order by SITE SUBJECT and display column headers for each variable defined in the column statement?
정답: D
문제2
This question will ask you to provide a line of missing code. Given the data set RAWBP that is sorted by SUBJECT TEST WEEK:

The following SAS program is submitted:
data bp;
set rawbp;
by subject test week;
retain baseline;
if first.test then baseline = .;
if week = 0 then baseline = value;
else if week > 0 then do;
<insert code here>
end;
run;
Which statement must be added to the program to calculate percent change from baseline?
This question will ask you to provide a line of missing code. Given the data set RAWBP that is sorted by SUBJECT TEST WEEK:

The following SAS program is submitted:
data bp;
set rawbp;
by subject test week;
retain baseline;
if first.test then baseline = .;
if week = 0 then baseline = value;
else if week > 0 then do;
<insert code here>
end;
run;
Which statement must be added to the program to calculate percent change from baseline?
정답: B
문제3
From the Statistical Analysis Plan, patients age is calculated as an integer relative to date randomized divided by 365.25.
Given the following annotated CRF:


Which programming code defines the patient's age?
From the Statistical Analysis Plan, patients age is calculated as an integer relative to date randomized divided by 365.25.
Given the following annotated CRF:


Which programming code defines the patient's age?
정답: D
문제4
Which CDISC model is built to harmonize information collected on case report forms?
Which CDISC model is built to harmonize information collected on case report forms?
정답: D
문제5
How does the code shown below help to validate report output?
data check;
set datlib.medhist;
mh_len = length(trim(mhcom1));
run;
proc freq data=check;
tables mh_len;
run;
How does the code shown below help to validate report output?
data check;
set datlib.medhist;
mh_len = length(trim(mhcom1));
run;
proc freq data=check;
tables mh_len;
run;
정답: D
문제6
The purpose of the ADaM model is to provide a framework that:
The purpose of the ADaM model is to provide a framework that:
정답: A
문제7
Which code segment includes a statement that would reset the graphics counter and ensure a 6in by
4in image is produced?
Which code segment includes a statement that would reset the graphics counter and ensure a 6in by
4in image is produced?
정답: D