Online Access Free A00-282 Exam Questions

Exam Code:A00-282
Exam Name:Clinical Trials Programming Using SAS 9.4
Certification Provider:SASInstitute
Free Question Number:144
Posted:Oct 17, 2025
Rating
100%

Question 1

Identify the CDISC model with the following characteristics:
XML-based content and format standard facilitates the archive and interchange of the metadata and data for clinical research provides an accurate audit trail that is 21 CRF Part II compliant

Question 2

This question will ask you to provide a line of missing code.
Given the following demography (DM) data set sorted by site with character variables SUBJID, SITE, SEX, RACE and numeric variables ENROLLDAT and DOB:

The following SAS program is submitted:
%macro p_demog(bylist, varlist, statlist=);
proc sort data=derived.dm out=dm;
by &bylist;
proc means data=dm;
by &bylist;
var &varlist;
output out=stats &statlist;
run;
%mend p_demog;
Which call to the p_demog macro provides only the MEAN of AGE by SEX into the output dataset STATS?

Question 3

The table below shows a subset of values of the variables LLTERM and HLTERM from a larger data set that is to be read into a DATA step.

Which subsetting IF statement could ensure that only records that have a missing value of LLTERM or a missing value of HLTERM are written to the resulting data set?

Question 4

Given the data set HE:

What will the values be of variable HOSPDURD for the two subjects?

Question 5

A dataset contains systolic blood pressure values stored in the variable SYSBP.
Which program displays the median systolic blood pressure over all participants?

Add Comments

Your email address will not be published. Required fields are marked *

insert code
Type the characters from the picture.