SASInstitute Clinical Trials Programming Using SAS 9.4 - A00-282 Exam Practice Test
Which statement correctly adds a label to the data set?
Correct Answer: D
The following partial output was produced from the SAS Dictionary Tables.

Which SQL statement produced this output?

Which SQL statement produced this output?
Correct Answer: C
The print below shows the first four observations from the TEST2 dataset.
Variable names are given in the first row.

The statistical analysis plan (SAP) requests that a two sample t-test be performed to compare the mean of variable FINALBP for levels of the variable TRT.
You review the following code from a colleague:
proc ttest data=test2;
by trt;
var finalbp;
run;
This code does not produce the analysis requested by the SAP.
What is wrong with this code?
Variable names are given in the first row.

The statistical analysis plan (SAP) requests that a two sample t-test be performed to compare the mean of variable FINALBP for levels of the variable TRT.
You review the following code from a colleague:
proc ttest data=test2;
by trt;
var finalbp;
run;
This code does not produce the analysis requested by the SAP.
What is wrong with this code?
Correct Answer: D
When writing a validation program using independent programming, which two actions conform to good programming practices?
(Choose two.)
(Choose two.)
Correct Answer: C,D
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
Which statement correctly creates a SAS date variable from a character variable?
Correct Answer: B