SAS Institute A00-282 SAS Certified Professional – Clinical Trials Programming Using SAS 9.4 Online Training
SAS Institute A00-282 Online Training
The questions for A00-282 were last updated at Nov 19,2024.
- Exam Code: A00-282
- Exam Name: SAS Certified Professional - Clinical Trials Programming Using SAS 9.4
- Certification Provider: SAS Institute
- Latest update: Nov 19,2024
The following partial output was produced from the SAS Dictionary Tables.
Which SQL statement produced this output?
- A . proc sql;
select * from dictionary.macros
where scope = ‘global’;
quit; - B . proc sql;
select * from dictionary.macros
where scope = ‘GLOBAL’;
quit; - C . proc sql;
select scope, name from dictionary.macros
where scope = ‘global’;
quit; - D . proc sql;
select scope, name from dictionary.macros
where scope = ‘GLOBAL’;
quit;
The following question will ask you to provide a line of missing code. The following program is submitted to output observations from data set ONE that have more than one record per patient.
Please enter the line of code that will correctly complete the program. Note: Case is ignored. Do not add leading or trailing spaces to your answer.
- A . BYSUBJID;
- B . id;
PTON run; - C . BYSUBJID;
BYSUBJID; - D . BYSUBJID;
run;
What information can be found in the SAS Dictionary tables? There are two correct answer, Please select two correct answer.
- A . datasets contained within a specified library
- B . values contained within a specified format
- C . variables contained within a specified dataset
- D . values contained within a specified variable
Given the following data set WORK.DM:
Which subjects will appear in the LOG file?
- A . 001 and 004
- B . 001 and 006
- C . 003 and 004
- D . 004 and 006
Given the following data set:
Which program was used to prepare the data for this PROC PRINT output?
- A . proc sort data=one out=two; by subjid; run;
- B . proc sort data=one out=two nodupkey; by subjid; run;
- C . proc sort data=one out=two nodup; by subjid; run;
- D . proc sort data=one out=two nodupkey; by subjid trt;
What is the primary purpose for specifying identifier variables across SDTM domains?
- A . To uniquely reference each record
- B . To satisfy regulatory conditions
- C . To include the appropriate subject information
- D . To include the appropriate study information
When writing a validation program using independent programming, which two actions conform to good programming practices?
(Choose two.)
- A . Ensure the production program has been run prior to compare.
- B . Delete subjects from the production side that are causing differences with the validation data set.
- C . Copy statistical code directly from the SAP.
- D . Copy statistical code directly from the production program.
Which code segment would you use to derive the numeric variable AVAL from AVALC by stripping off non-numeric characters?
- A . aval = put(compress(avalc, ‘<>=’), best12.);
- B . aval = input(compress(avalc, ‘<>=’), best12.);
- C . aval = input(substr(avalc, 2,2), best12.);
- D . aval = put(substr(avalc, 2,2), best12.);
Given the following SCORE data set:
Based on the concept of Last Observation Carried Forward, what will be the value for SCORE for the Week 12 –
- A . 157
- B . 152
- C . missing
- D . 153
The following SAS program is submitted:
Which alternative program creates an equivalent BASE_BP data set?
- A . proc sort data=VS (keep=usubjid vsstresn vstestcd)
out=BASE_BP (drop=vstestcd);
where vstestcd in(‘DIABP’,’SYSBP’);
by usubjid;
run; - B . data BASE_BP;
set VS (keep=usubjid vsstresn);
if vstestcd in(‘DIABP’,’SYSBP’);
run; - C . proc sort data=VS (keep=usubjid vsstresn vstestcd)
out=BASE_BP (drop=vstestcd);
by usubjid;
if vstestcd in(‘DIABP’,’SYSBP’);
run; - D . data BASE_BP (keep=usubjid vsstresn vstestcd);
set VS (drop=vstestcd);
if vstestcd in(‘DIABP’,’SYSBP’);
run;