Exam Code : A00-280
Exam Name : Clinical Trials Programming Using SAS 9
Vendor Name :
"SASInstitute"
A00-280 Dumps
A00-280 Braindumps A00-280 Real Questions A00-280 Practice Test
A00-280 Actual Questions
killexams.com SASInstitute A00-280
Clinical Trials Programming Using SAS 9
https://killexams.com/pass4sure/exam-detail/A00-280
A Statistical Analysis Plan (SAP) defines the selection process for baseline records. This instructs the programmer to choose the last non-missing analyte value prior to first study drug administration (date/time). The DEMO data set contains the date/time of first study drug administration for subject:
What will be the resulting baseline values, as selected per the SAP instructions?
Option A
Option B
Option C
Option D
From the Statistical Analysis Plan, patients age is calculated as an integer relative to date randomized divided by 365.25. Given the following annotated CRF:
Which programming code defines the patient's age?
age = int((birthdt-randdt)/365.25);
age = int((randdt-birthdt)/365.25);
age= int(yrdif(birthdt,randdt, "act/365.25" ));
age = int((today()-birthdt)/365.25);
An action plan that describes what will be done in a drug study, how it will be conducted, and why each part of the study is necessary is called:
a clinical trial plan
a protocol
a data management plan
a statistical analysis plan
What is the main focus of 21 CFR Part 11?
electronic submission requirements
trial safety requirements
statistical calculation requirements
trial protocol requirements
What is an international ethical and scientific quality standard for designing, conducting, recording and reporting trials that involve the participation of human subjects?
21 CFR Part 11
Good Clinical Practices
MedDRA
WHODrug
A patient received at least one dose of study medication prior to withdrawing from a study. Which analysis population would always include this patient?
efficacy
intent to treat
per protocol
safety
A Statistical Analysis Plan describes a clinical trial as "A 12 week, double-blind, placebo- controlled, randomized, multi-center study." Double-blind refers to which groups in this study?
treatment and control group
investigator and subjects
statistician and sponsor
sponsor and investigator
Given the following SAS program:
Which statement correctly identifies invalid values in the variable TRT, if only the values 'A', B', 'C are valid?
if indexc(TRT, 'ABC') eq 0 then output;
if index(TRT, 'ABC') eq 0 then output;
if find(TRT, 'ABC') eq 0 then output;
if indexw(TRT, 'ABC') eq 0 then output;