SAS Institute A00-282 Real Exam Questions
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
Question #11
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;
Question #12
This question will ask you to provide a line of missing code.
Which statement must be added to the following program to create a page break in the report after each RACE grouping?
- A . break page / race;
- B . break race / page;
- C . break after race / page;
- D . break after race;
Question #13
Which OPTION displays all SAS language statements generated during macro execution?
- A . MPRINT
- B . MLOGIC
- C . MSTORED
- D . MRECALL
Question #14
You are working with the VS data set that contains the variable Pulse.
Which PROC SGPLOT step will produce the graph shown below?
- A . proc sgplot data = Work.VS noautolegend;
density pulse;
vbarbasic pulse;
run; - B . proc sgplot data = Work.VS noautolegend;
density pulse;
histogram pulse;
run; - C . proc sgplot data = Work.VS noautolegend;
histogram pulse;
density pulse;
run; - D . proc sgplot data = Work.VS noautolegend;
vbarbasic pulse;
density pulse;
run;
Question #15
Given the following vital signs data: Baseline is defined as the last non-missing value prior to Day 1.
What is the value for the change from baseline for Week 1 for Subject 2?
- A . -23
- B . 11
- C . -11
- D . 23