SAS Institute A00-282 Real Exam Questions
The questions for A00-282 were last updated at Nov 18,2024.
- Exam Code: A00-282
- Exam Name: SAS Certified Professional - Clinical Trials Programming Using SAS 9.4
- Certification Provider: SAS Institute
- Latest update: Nov 18,2024
This question will ask you to provide a section of missing code.
Given the input SAS data set LABRAW:
Which DO LOOP will create the output SAS data set WORK.LAB_NEW?
- A . do i=1 to 2; visit=i; date=dat{i}; result=num{i}; output; end;
- B . do i=1 to 2; visit=i; date=dat{i}; result=num{i}; end; output;
- C . do i=1 to 2; do j=1 to 2; visit=i; date=dat{j}; result=num{j}; output; end;
- D . do i=1 to 2; do j=1 to 2; visit=i; date=dat{j}; result=num{j}; end; output; end;
This question will ask you to provide a line of missing code.
Given the following log entry:
Which line of code would produce the merge issue notes in the log?
- A . if indm ne indisp then output ‘MERGE ISSUE: ‘ subjid= indm= indisp=;
- B . if indm ne indisp then put ‘MERGE ISSUE: ‘ subjid= indm= indisp=;
- C . %if indm ne indisp %then %put ‘MERGE ISSUE: ‘ subjid= indm= indisp=;
- D . if indm ne indisp then put ‘MERGE ISSUE: ‘ _all_;
The following SAS program is submitted:
Which types of variables are DayofMonth, MonthofYear, and Year?
- A . DayofMonth, Year, and MonthofYear are character.
- B . DayofMonth, Year, and MonthofYear are numeric.
- C . DayofMonth and Year are numeric. MonthofYear is character
- D . DayofMonth, Year, and MonthofYear are date values
You have been asked to import an Excel spreadsheet.
What will lead to substantial differences between the original Excel spreadsheet and the resulting SAS data set?
- A . the number of rows to be read from the Excel file
- B . the number of columns to be read from the Excel file
- C . multiple value types within a single column
- D . multiple value types within a single row
A report that you are working on will require the following header lines:
Which code adds the second line of the header "Adverse Events"?
- A . header2 ‘Adverse Events’;
- B . header2 = ‘Adverse Events’;
- C . title2 = ‘Adverse Events’;
- D . title2 ‘Adverse Events’;
Which percentage in the table is calculated incorrectly, assuming the cell counts are correct? Percentages are rounded to the nearest whole percent.
- A . 40
- B . 44
- C . 54
- D . 52
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
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.);
The following output is displayed:
Which SAS program created this output?
- A . proc freq data=WORK.TESTDATA; tables gender * answer / nocol norow nopercent; run;
- B . proc freq data=WORK.TESTDATA; tables answer * gender / nocol norow nopercent; run;
- C . proc freq data=WORK.TESTDATA; tables gender * answer / nocol norow nopercent missing; run;
- D . proc freq data=WORK.TESTDATA; tables answer * gender / nocol norow nopercent missing;
In CDISC, which of the following describes the usage of controlled terms, code lists, or formats?
- A . Establishes consistent variable names.
- B . Establishes consistent variable types.
- C . Establishes consistent variable labels
- D . Establishes consistent variable values