[2024年11月08日] 有効なA00-282テスト解答とSASInstitute A00-282試験PDF問題を試そう [Q58-Q82]

Share

[2024年11月08日] 有効なA00-282テスト解答とSASInstitute A00-282試験PDF問題を試そう

実際に出るA00-282試験問題集には正確で更新された問題


A00-282認定試験は、SASを使用した臨床試験プログラミングでキャリアを追求したい個人にとって絶好の機会です。また、すでにこの分野で働いており、スキルと知識を向上させたい専門家にとっても理想的です。試験に合格すると、業界内での雇用機会、より高い給与、承認につながる可能性があります。


SASInstitute A00-282試験に合格することは、医薬品および医療産業の専門家にとって貴重な成果です。これは、SASソフトウェアを使用して臨床試験データを扱うために必要な知識とスキルを持っていることを示し、キャリアアップの機会を生み出す可能性があります。この認定は、世界的に認知され、業界の雇用主から高く評価されています。SASInstitute A00-282試験に合格することにより、個人はプロフェッショナルな信頼性を高め、求職市場での価値を高めることができます。

 

質問 # 58
The following SAS program is submitted:

What is the value of the second variable in the data set WORK.DIGESTL?

  • A. divertic
  • B. diverticulosis
  • C. a missing value
  • D. No variables are created.

正解:A


質問 # 59
Given the file sites.csv:

Which option would you need to add to the INFILE statement to clear the notes from this log?

  • A. lrecl=2
  • B. missover
  • C. start=2
  • D. firstobs=2

正解:D


質問 # 60
How does the code shown below help to validate report output?
data check;
set datlib.medhist;
mh_len = length(trim(mhcom1));
run;
proc freq data=check;
tables mh_len;
run;

  • A. It shows all the values for mhcom1 in the results.
  • B. It helps the programmer determine which observation has the longest value for mhcom1.
  • C. It shows all the values for the length of mhcom1 in the results.
  • D. It writes all values of the mhcom1 variable that are longer than 200 in the results.

正解:C


質問 # 61
Which function would be used to determine the number of elements in an existing array?

  • A. count ()
  • B. dim ()
  • C. n ()
  • D. sum ()

正解:B


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

正解:D


質問 # 63
The following text is displayed in your SAS log:


Which statement is necessary to store the p-values of the t-test in a data set called PVALUES in the WORK library?

  • A. ods T-Tests=WORK.PVALUES;
  • B. ods output T-Tests=WORK.PVALUES;
  • C. ods TTests=WORK.PVALUES;
  • D. ods output TTests=WORK.PVALUES;

正解:D


質問 # 64
Which validation technique involves two programmers writing separate programs to produce the same output, then comparing the result?

  • A. Identical Programming
  • B. Independent Programming
  • C. Peer Matching
  • D. Peer Review

正解:B


質問 # 65
What is the definition for treatment-emergent adverse event (TEAE)?

  • A. AE that started or worsened after the first dose of study drug
  • B. AE that improved after the first dose of study drug
  • C. AE that started 6 months after the last dose of study drug
  • D. AE that continued after the first dose of study drug

正解:A


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

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

正解:D


質問 # 67
The following SAS program is submitted:

How many data sets are created and how many observations are in the data set(s)?

  • A. 1 data set named PVALUES with 1 observation.
  • B. 2 data sets named PVALUES and PVALUES1 each with 1 observation.
  • C. 2 data sets named PVALUES1 and PVALUES2 each with 2 observations
  • D. 1 data set named PVALUES with 2 observations.

正解:B


質問 # 68
Given the following data set DEMOG:

Which selection below would be considered hard-coding?

  • A. birthdt = input(dob, mmddyy10.);
  • B. if site eq 1 then sexcd = 2; else if site eq 2 then sexcd = 1;
  • C. if site eq 1 and sexcd ne 2 then check = 1; else if site eq 2 and sexcd ne 1 then check = 2;
  • D. if sexcd eq 1 then sex = "Male"; else if sexcd eq 2 then sex = "Female";

正解:C


質問 # 69
What is the key to ensuring traceability across CDISC data sets and modes?

  • A. Including STDM variables used to derive ADaM variables in the ADaM data set.
  • B. Establishing a clear path between an element and all of its immediate predecessors.
  • C. Establishing a clear path between an element and all of its immediate successors.
  • D. Creating a map for each variable to all of its related predecessors.

正解:A


質問 # 70
This question will ask you to provide a line of missing code.

Which line of code would produce the blue notes in the log?

  • A. if indm ne indisp then put 'MERGE ISSUE: ' _all_;
  • B. if indm ne indisp then output '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: ' subjid= indm= indisp=;

正解:D


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

正解:B


質問 # 72
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 mean std;
  • C. output out=WORK.RESULTS mean=m1 m2 std=s1 s2;
  • D. ods output out=WORK.RESULTS mean=m1 m2 std=s1 s2;

正解:C


質問 # 73
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. Trial Design Model (TDM)
  • B. Study Data Tabulation Model (SDTM)
  • C. Operational Data Model (ODM)
  • D. Analysis Data Model (ADaM)

正解:C


質問 # 74
You are working on validating the ADSL data set which contains the variables subject, sex, age, birth date, baseline height, and baseline weight. These variables are brought in from SDTM, and you derive new variables baseline BMI (from baseline height and weight) and age categorization (from age).

You get the following in the SAS log:

To reconcile this difference, which variable values will be most helpful to provide to the production programmer?

  • A. BLBMI
  • B. SUBJID BLHT BLWT BLBMI
  • C. SUBJID BLBMI
  • D. AGECAT1 BLBMI

正解:B


質問 # 75
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, 17, 4, 3, 6
  • B. 17.1,17.7,4.4,3.8,6.3
  • C. 17.1 17.7 4.4 3.8 6.3
  • D. Blank, the code will not execute

正解:B


質問 # 76
Given the following log entry:

Which SAS system option adds the blue highlighted lines to the log?

  • A. INVALIDDATA='I'
  • B. NOTES
  • C. INFO
  • D. MSGLEVEL=I

正解:D


質問 # 77
A subject reports a medication started in March of 2007 but cannot recall the day number.
What is the value stored in the SDTM domain CM.CMSTDTC variable?

  • A. 00MAR2007
  • B. MAR2007
  • C. 2007-03
  • D. 2007 03

正解:C


質問 # 78
Which is NOT required in the ADSL data set?

  • A. AGEU
  • B. AGE
  • C. FASFL
  • D. SITEID

正解:C


質問 # 79
Which OPTION displays all SAS language statements generated during macro execution?

  • A. MLOGIC
  • B. MPRINT
  • C. MSTORED
  • D. MRECALL

正解:B


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

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

正解:D


質問 # 81
Which statement assigns the system date and time to the character variable CURRDTTM?

  • A. currdttm='%sysdate9 %systime';
  • B. currdttm="&sysdate9 &systime";
  • C. currdttm='&sysdate9 &systime';
  • D. currdttm="%sysdate9 %systime";

正解:B


質問 # 82
......


SASInstituteのA00-282認定試験は、SAS 9.4を使用した臨床試験プログラミングの分野の専門家を対象としています。認定試験は、SASプログラミング技術、臨床試験データ構造、臨床試験プロセスに関連する個人のスキルと知識を検証します。この認定は、個人が臨床試験産業でキャリアを進め、SASプログラミングの熟達度を証明するのに役立ちます。

 

A00-282試験問題集でPDF問題とテストエンジン:https://www.goshiken.com/SASInstitute/A00-282-mondaishu.html

A00-282問題集で必ず合格させる試験:https://drive.google.com/open?id=1LXldXlkrx-V8vHkG8SrDWD_7Mu1xWkjN