SASInstitute Clinical Trials Programming Using SAS 9.4 - A00-282 Exam Practice Test
Given the following output from the TTEST Procedure: Variable:

What is the t-test p-value?

What is the t-test p-value?
Correct Answer: A
Vote an answer
When writing a validation program using independent programming, which two actions conform to good programming practices?
(Choose two.)
(Choose two.)
Correct Answer: B,D
Vote an answer
Given the SAS data set WORK.VS1:

Which value will be assigned to variable TOTAL?

Which value will be assigned to variable TOTAL?
Correct Answer: A
Vote an answer
Which CDISC standard is concerned with the development of simplified case report forms?
Correct Answer: D
Vote an answer
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?

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?
Correct Answer: C
Vote an answer
The PROC SGPLOT step below needs to be modified to format the values on the horizontal axis.
proc sgplot data = work.adlb;
histogram AVAL;
<insert code here>
run;
Which statement CANNOT be used to format the values due to a syntax error?
proc sgplot data = work.adlb;
histogram AVAL;
<insert code here>
run;
Which statement CANNOT be used to format the values due to a syntax error?
Correct Answer: D
Vote an answer
In a Statistical Analysis Plan (SAP) the following statement is written:
To test the association between the pain intensity reported by the patient and the treatment the patient has been administered, a Cochran-Mantel-Haenszel test will be performed adjusting for the country of the patient's investigational site.
The following variables and levels are used:
- Pain intensity (PAIN): "No pain", "Mild pain", "Moderate pain", "Severe pain", "Most severe pain"
- Treatment group (TREAT): "Placebo", "Drug A", "Drug B"
- Country (COUNTRY): Eight different values.
The following program is written to perform this analysis:
proc freq data=pain;
by COUNTRY;
tables PAIN * TREAT / cmh;
run;
This code does not produce the analysis requested by the SAP.
What is wrong with this code?
To test the association between the pain intensity reported by the patient and the treatment the patient has been administered, a Cochran-Mantel-Haenszel test will be performed adjusting for the country of the patient's investigational site.
The following variables and levels are used:
- Pain intensity (PAIN): "No pain", "Mild pain", "Moderate pain", "Severe pain", "Most severe pain"
- Treatment group (TREAT): "Placebo", "Drug A", "Drug B"
- Country (COUNTRY): Eight different values.
The following program is written to perform this analysis:
proc freq data=pain;
by COUNTRY;
tables PAIN * TREAT / cmh;
run;
This code does not produce the analysis requested by the SAP.
What is wrong with this code?
Correct Answer: D
Vote an answer
A report that you are working on will require the following header lines:

Which code adds the second line of the header "Adverse Events"?

Which code adds the second line of the header "Adverse Events"?
Correct Answer: B
Vote an answer