SASInstitute A00-282問題集で100%カバー率リアル試験問題(更新された144問あります) [Q14-Q36]

Share

SASInstitute A00-282問題集で100%カバー率リアル試験問題(更新された144問あります)

リアルA00-282問題集でリアルSASInstitute問題集PDF

質問 # 14
A statistical analysis plan asks you to create a table with the following counts of adverse events:
- the number adverse events in each system organ class (AESOC)
- within each level of system organ class, the number of adverse events with each preferred term (AEPT).
Which code produces the counts requested?

  • A. proc freq data=AE:
    tables AESOC, AEPT;
    run;
  • B. proc freq data=AE;
    tables AESOC AEPT;
    run;
  • C. proc freq data=AE;
    tables AESOC*AEPT;
    run;
  • D. proc freq data=AE;
    tables AESOC (AEPT);
    run;

正解:C


質問 # 15
Vital Signs are a component of which SDTM class?

  • A. Findings
  • B. Special Purpose
  • C. Events
  • D. Interventions

正解:A


質問 # 16
Which statement correctly adds a label to the data set?

  • A. DATA two (Label="Subjects having duplicate observations"); set one;
  • B. DATA two Label="Subjects having duplicate observations"; set one; run;
  • C. DATA two; Label="Subjects having duplicate observations"; set one; run;
  • D. DATA two; set one; Label dataset="Subjects having duplicate observations"; run;

正解:A


質問 # 17
When writing a validation program using independent programming, which two actions conform to good programming practices?
(Choose two.)

  • A. Delete subjects from the production side that are causing differences with the validation data set.
  • B. Ensure the production program has been run prior to compare.
  • C. Copy statistical code directly from the production program.
  • D. Copy statistical code directly from the SAP.

正解:B、D


質問 # 18
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;
    run;
  • B. BYSUBJID;
  • C. BYSUBJID;
    BYSUBJID;
  • D. id;
    PTON run;

正解:B


質問 # 19
Which code segment would you use to derive the numeric variable AVAL from AVALC by stripping off non-numeric characters?

  • A. aval = input(compress(avalc, '<>='), best12.);
  • B. aval = put(substr(avalc, 2,2), best12.);
  • C. aval = put(compress(avalc, '<>='), best12.);
  • D. aval = input(substr(avalc, 2,2), best12.);

正解:A


質問 # 20
Which statement correctly creates a SAS date variable from a character variable?

  • A. sasdate = put(chardate,date9.);
  • B. sasdate = input(chardate,date9.);
  • C. sasdate = date(chardate,date9.);
  • D. sasdate = 'chardate'd;

正解:B


質問 # 21
Given the following two data sets EX and AE:

Which output data set is produced by the submitted SAS program?

  • A. Option A
  • B. Option D
  • C. Option C
  • D. Option B

正解:D


質問 # 22
In PROC REPORT, which usage creates a column in the report for each distinct formatted value of the variable listed in the DEFINE statement?

  • A. ANALYSIS
  • B. ACROSS
  • C. DISPLAY
  • D. GROUP

正解:B


質問 # 23
The following SAS program is submitted:
proc univariate date=work.STUDY; by VISIT; class REGION TREAT; var HBA1C GLUCOS; run; You want to store all calculated means and standard deviations in one SAS data set.
Which statement must be added to the program?

  • A. ods output mean=m1 m2 std=s1 s2;
  • B. output out=WORK.RESULTS mean=m1 m2 std=s1 s2;
  • C. output mean std;
  • D. ods output out=WORK.RESULTS mean=m1 m2 std=s1 s2;

正解:B


質問 # 24
Given the following complete dataset (WORK.TESTDM) with the variables USUBJID (character) and AGE (numeric):

The following code is executed:
proc sql;
select age into: age separated by ','
from testdm;
quit;
What is the value of the macro variable AGE?

  • A. 17.1,17.7,4.4,3.8,6.3
  • B. 17.1 17.7 4.4 3.8 6.3
  • C. 17, 17, 4, 3, 6
  • D. Blank, the code will not execute

正解:A


質問 # 25
Given the following code executed with system date and time of April 29, 2020 at 10:33 AM:
data _null_;
daytim=put("&sysdate"d,date9.)||" "||put("&systime"t,time8.);
call symputx("nowdate", daytim);
run;
%put &nowdate;
The output of the macro variable "nowdate" in the log will be:

  • A. 29APR2020 10:33 AM
  • B. 29APR2020 10:33:00
  • C. &nowdate
  • D. daytim

正解:B


質問 # 26
The following SAS program is submitted:

You want to store all calculated means and standard deviations in one SAS data set.
Which statement must be added to the program?

  • A. ods output mean=m1 m2 std=s1 s2;
  • B. output out=WORK.RESULTS mean=m1 m2 std=s1 s2;
  • C. output mean std;
  • D. ods output out=WORK.RESULTS mean=m1 m2 std=s1 s2;

正解:B


質問 # 27
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; do j=1 to 2; visit=i; date=dat{j}; result=num{j}; output; end;
  • B. do i=1 to 2; do j=1 to 2; visit=i; date=dat{j}; result=num{j}; end; output; end;
  • C. do i=1 to 2; visit=i; date=dat{i}; result=num{i}; output; end;
  • D. do i=1 to 2; visit=i; date=dat{i}; result=num{i}; end; output;

正解:C


質問 # 28
Which SAS program will apply the data set label 'Demographics' to the data set named DEMO?

  • A. data demo; set demo;
    label demo= 'Demographics';
    run;
  • B. data demo (label='Demographics');
    set demo;
    run;
  • C. data demo;
    set demo (label='Demographics');
    run;
  • D. data demo (label 'Demographics');
    set demo;
    run;

正解:B


質問 # 29
This question will ask you to provide lines of missing code.

Which ODS statements, inserted respectively in the two locations indicated above, create a report stored in a PDF file?

  • A. ods file pdf='AE.pdf';
    ods file close;
  • B. ods file open='AE.pdf' type=pdf;
    ods file close;
  • C. ods pdf open='AE.pdf';
    ods pdf close;
  • D. ods pdf file='AE.pdf';
    ods pdf close;

正解:D


質問 # 30
Identify the CDISC model with the following characteristics:
XML-based content and format standard facilitates the archive and interchange of the metadata and data for clinical research provides an accurate audit trail that is 21 CRF Part II compliant

  • A. Operational Data Model (ODM)
  • B. Analysis Data Model (ADaM)
  • C. Study Data Tabulation Model (SDTM)
  • D. Trial Design Model (TDM)

正解:A


質問 # 31
Given the data set below, which SAS program correctly counts the of number of unique subjects for each combination of system organ class and treatment?

  • A. proc sort data=a out=b;
    by trta aesoc;
    run;
    proc freq data=b noprint;
    by trta;
    table aesoc / out=freq;
    run;
  • B. proc sort data=a out=b nodupkey;
    by trta aesoc subjidn;
    run;
    proc freq data=b noprint;
    by trta;
    table aesoc / out=freq;
    run;
  • C. proc sort data=a out=b;
    by trta aesoc subjidn;
    run;
    proc freq data=b noprint;
    by trta;
    table aesoc/out=freq;
    run;
  • D. proc sort data=a out=b nodupkey;
    by trta aesoc;
    run;
    proc freq data=b noprint;
    by trta;
    table aesoc / out=freq;
    run;

正解:B


質問 # 32
Which is an acceptable variable label in a V5 transport file for regulatory submission?

  • A. Reason Medical History Not Done or Not Occurred
  • B. Category for Reproductive System Findings
  • C. Numeric Result/Finding in Standard Format
  • D. Character Result/Finding in Std Format

正解:D


質問 # 33
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_;

正解:B


質問 # 34
Review the following procedure format:
PROC TTEST date=date;
class group-variable;
var variable;
run;
What is the required type of data for the variable in this procedure?

  • A. Character
  • B. Continuous
  • C. Categorical
  • D. Treatment

正解:B


質問 # 35
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. select; when (day > 14) week = 3; when (day > 7) week = 2; otherwise week = 1; end;
  • C. if day > 0 then week = 1; else if day > 7 then week = 2; else if day > 14 then week = 3;
  • D. select; when (day > 0) week = 1; when (day > 7) week = 2; otherwise week = 3; end;

正解:A


質問 # 36
......


Sasinstitute A00-282試験は、広範な準備と研究が必要な挑戦的な試験です。ただし、試験に合格すると、臨床試験プログラミングの分野で専門家に機会の世界を開くことができ、キャリアを前進させ、専門的な目標を達成するのに役立ちます。

 

実際にあるGoShiken A00-282問題集PDFで100%合格率 保証付き:https://www.goshiken.com/SASInstitute/A00-282-mondaishu.html

無料SASInstitute A00-282試験問題と解答:https://drive.google.com/open?id=1QGaS9Iwj2ad0WTBPMeYSeooLKsQs8904