Practice Free A00-282 Exam Online Questions
The following SAS program is submitted:
Which value does variable X contain?
- A . the numeric value 0
- B . the character value "01Jan1960"
- C . the date value 01011960
- D . the code contains a syntax error and does not execute.
A Statistical Analysis Plan defines study day as the number of days between the visit date and the date of randomization plus one day.
The following SAS program is submitted using a macro from the project’s library:
How is the STUDYDAY macro defined?
- A . %MACRO studyday(rand, visit);
&vdt. ?&rdt. + 1
%MEND studyday; - B . %MACRO studyday(rand=, visit=);
&vdt. ?&rdt. + 1
%MEND studyday; - C . %MACRO studyday(rand, visit);
&visit. ?&rand. + 1
%MEND studyday; - D . %MACRO studyday(visit=, rand=);
&visit. ?&rand. + 1
%MEND studyday;
The following SAS program is submitted:
proc sort data=SASUSER.VISIT out=PSORT; by code descending date cost; run;
Which statement is true regarding the submitted program?
- A . The descending option applies to the variable CODE.
- B . The variable CODE is sorted by ascending order.
- C . The PSORT data set is stored in the SASUSER library.
- D . The descending option applies to the DATE and COST variables.
Given the following data set:
Which type of clinical trials data is this?
- A . Demographics
- B . Laboratory
- C . Medical History
- D . Vital Signs
Which of these tasks is NOT required for a validating programmer to state that an output has been independently validated using double programming once a PROC COMPARE has been run and shows the output electronically validates?
- A . The Statistical Analysis Plan has been approved and signed off by the sponsor.
- B . The output is using the correct title specified in the Statistical Analysis Plan.
- C . Counts displayed in the columns are coherent.
- D . The output is correctly paginated.
This question will ask you to provide a line of missing code. The following SAS program is submitted:
Which statement is required to produce this output?
- A . TABLES site*group /nocol;
- B . TABLES site*group /norow;
- C . TABLES site*group;
- D . TABLES site*group /nocol norow;
Which code segment includes a statement that would reset the graphics counter and ensure a 6in by 4in image is produced?
- A . ods graphics / counter = 1 width = 6in height = 4in;
- B . ods graphics / width = 6in height = 4in reset;
- C . ods graphics / reset width = 6in height = 4in;
- D . ods graphics / width = 6in height = 4in counter = 1;
Given the data set WORK.BP with the following variable list:
Which output will be created by the program?
- A . Option A
- B . Option B
- C . Option C
- D . Option D
Given the following data set (AE):
Data will be reported by onset week. Day 1?
7 is Week 1, Day 8 ?14 is Week 2. Events beyond Day 14 are assigned Week 3 and will be reported as Follow-up events.
Which statements properly assign WEEK to each event?
- A . if day > 14 then week = 3; else if day > 7 then week = 2; else if day > 0 then week = 1;
- B . if day > 0 then week = 1; else if day > 7 then week = 2; else if day > 14 then week = 3;
- C . select; when (day > 0) week = 1; when (day > 7) week = 2; otherwise week = 3; end;
- D . select; when (day > 14) week = 3; when (day > 7) week = 2; otherwise week = 1; end;
What is the primary purpose of programming validation?
- A . Ensure that the output from both the original program and the validation program match.
- B . Efficiently ensure any logic errors are discovered early in the programming process.
- C . Justify the means used to accomplish the outcome of a program and ensure its accurate representation of the original data.
- D . Document all specifications pertaining to programmed output and ensure all were reviewed during the programming process.