2024年最新のに更新されたのはA00-282テストエンジンとPDFで完全版無料問題集保証! [Q59-Q78]

Share

2024年最新のに更新されたのはA00-282テストエンジンとPDFで完全版無料問題集保証!

最新のSAS Clinical Trials Programming A00-282実際の無料試験問題


Sasinstitute A00-282試験は、SASを使用した臨床試験プログラミングに関連するさまざまな分野で候補者の知識とスキルを評価する包括的な評価です。これらの領域には、データ操作、データ分析、マクロプログラミング、SASプログラミングの基礎、臨床試験データ構造などが含まれます。この試験は、2時間の時間制限内で回答する必要がある60の複数選択質問で構成されています。

 

質問 # 59
The following SAS program is submitted: data WORK.ALL;

How will the data sets ONE and TWO be combined?

  • A. updated
  • B. concatenated
  • C. one-one merged
  • D. match merged

正解:B


質問 # 60
Given the following demographic dataset:

Which program will generate a report where observations will appear in order by SITE SUBJECT and display column headers for each variable defined in the column statement?

  • A. Proc Report;
    column site subject trt age gender race;
    define site/order 'Site';
    define subject/order 'Subject';
    define trt/'Treatment';
    define age/'Age';
    define gender/'Gender';
    define race/'Race';
    run;
  • B. Proc Report;
    column site subject trt age gender race;
    define site/order style(header)={'Site'};
    define subject/order style(header)={'Subject'};
    define trt/style(header)={'Treatment'};
    define age/style(header)={'Age'};
    define gender/style(header)={'Gender'};
    define race/style(header)={'Race'};
    run;
  • C. Proc Report;
    column site subject trt age gender race;
    define site, subject, trt, age, gender, race;
    y site subject;
    title 'Site Subject Treatment Age Gender Race';
    run;
  • D. Proc Report;
    column site subject trt age gender race;
    define site/'Site', subject/'Subject',
    trt/'Treatment', age/'Age', gender/'Gender',
    race/'Race'; run;

正解:A


質問 # 61
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 open='AE.pdf' type=pdf;
    ods file close;
  • B. ods pdf file='AE.pdf';
    ods pdf close;
  • C. ods pdf open='AE.pdf';
    ods pdf close;
  • D. ods file pdf='AE.pdf';
    ods file close;

正解:B


質問 # 62
What is an international ethical and scientific quality standard for designing, conducting, recording and reporting trials that involve the participation of human subjects

  • A. MedDRA
  • B. Good Clinical Practices
  • C. WHODrug
  • D. 21 CFR Part 11

正解:B


質問 # 63
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. MAR2007
  • B. 2007 03
  • C. 00MAR2007
  • D. 2007-03

正解:D


質問 # 64
The first six (6) records from the LABS data set are shown below:

The following SAS program is written to reshape this data set and place it in a new data set named LBTR.
proc transpose data=labs out=lbtr(rename = (col1 = value));
by subjid sampldat;
var Calcium Glucose Hemoglobin;
run;
Which of the following DATA steps produces a data set that is equivalent to the LBTR data set created by the PROC TRANSPOSE step above?

  • A. data lbtr2(drop = i calcium glucose hemoglobin);
    set labs;
    array orig[3] calcium glucose hemoglobin;
    array testcds[3] $ 10 ("CALCIUM" "GLUCOSE" "HEMOGLOBIN");
    do i = 1 to 3;
    value = orig[i];
    _name_ = testcds[i];
    end;
    output;
    run;
  • B. data lbtr2(drop = i calcium glucose hemoglobin);
    set labs;
    array orig[3] calcium glucose hemoglobin;
    array testcds[3] $ 10 _temporary_ ("CALCIUM" "GLUCOSE" "HEMOGLOBIN");
    do i = 1 to 3;
    value = orig[i];
    _name_ = testcds[i];
    end;
    output;
    run;
  • C. data lbtr2(drop = i calcium glucose hemoglobin);
    set labs;
    array orig[3] calcium glucose hemoglobin;
    array testcds[3] $ 10 ("CALCIUM" "GLUCOSE" "HEMOGLOBIN");
    do i = 1 to 3;
    value = orig[i];
    _name_ = testcds[i];
    output;
    end;
    run;
  • D. data lbtr2(drop = i calcium glucose hemoglobin);
    set labs;
    array orig[3] calcium glucose hemoglobin;
    array testcds[3] $ 10 _temporary_ ("CALCIUM" "GLUCOSE" "HEMOGLOBIN");
    do i = 1 to 3;
    value = orig[i];
    _name_ = testcds[i];
    output;
    end;
    run;

正解:D


質問 # 65
Given the data set RAWBP that is sorted by SUBJECT TEST WEEK:

Baseline is defined as the week 0 value. Your colleague provides the following SAS program to calculate change from baseline:
data bp;
set rawbp;
by subject test week;
retain baseline;
if first.subject then baseline = value;
if week > 0 then change = value - baseline;
run;
What does the code calculate as the change from baseline for systolic blood pressure (SBP) at week 3?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

正解:A


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

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

正解:C


質問 # 67
The VISIT data set is multiple records per subject, sorted by usubjid vistdtc vistm and contains the following variables:

The DEATH data set is one record per subject, sorted by usubjid vistdtc vistm and contains the following variables:

Which program will combine the DEATH and VISIT data sets by matching records?

  • A. data data_1;
    merge death visit;
    by usubjid vistdtc vistm;
    run;
  • B. data data_1;
    set death visit;
    by usubjid vistdtc vistm;
    run;
  • C. data data_1;
    merge death visit;
    run;
  • D. data data_1;
    merge death visit;
    by usubjid vistm vistdtc;
    run;

正解:A


質問 # 68
This question will ask you to provide a line of missing code.
Given the dataset RAWBP that is sorted by SUBJECT TEST WEEK:

Which statement must be added to the program to calculate relative change in percent (percent change) from baseline?

  • A. pct_chg = ((value - baseline) /value)*100;
  • B. pct_chg = ((value - baseline) /baseline)*100;
  • C. pct_chg = ((baseline - value) /baseline)*100;
  • D. pct_chg = ((baseline - value) /value)*100;

正解:B


質問 # 69
Which name is a valid SAS V5 variable name?

  • A. AE-STDTC
  • B. _AESTDTC
  • C. AESTARTDTC
  • D. AE_START_DTC

正解:B


質問 # 70
The following SAS program is submitted:

Which value does variable X contain?

  • A. the code contains a syntax error and does not execute.
  • B. the character value "01Jan1960"
  • C. the numeric value 0
  • D. the date value 01011960

正解:C


質問 # 71
Which two variables are required in BDS ADaM data sets?
(Choose two.)

  • A. PARAM
  • B. AVAL
  • C. ASEQ
  • D. STUDYID

正解:A、D


質問 # 72
Which program will report all created output objects in the log?

  • A. proc ttest data=WORK.DATA1 ods=trace; class TREAT; var RESULTS; run;
  • B. ods trace on; proc ttest data=WORK.DATA1; class TREAT; var RESULTS; run;
  • C. ods trace=log; proc ttest data=WORK.DATA1; class TREAT; var RESULTS; run;
  • D. ods trace log; proc ttest data=WORK.DATA1; class TREAT; var RESULTS; run;

正解:B


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

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

正解:B


質問 # 74
The programmer runs a validation program of the SDTM DM domain which produces the following in the log in SAS:

What does the validator need to check?

  • A. The labels of both the production and validation datasets.
  • B. The internal data values for SEX and AGE.
  • C. The formatted data values for SEX and AGE.
  • D. The sort order of both the production and validation datasets.

正解:B


質問 # 75
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. DISPLAY
  • C. GROUP
  • D. ACROSS

正解:D


質問 # 76
Given the following log entry:

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

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

正解:B


質問 # 77
Define.xml is an XML-based submission of a clinical study's:

  • A. metadata
  • B. data
  • C. protocol
  • D. results

正解:A


質問 # 78
......


Sasinstitute A00-282試験は、SASソフトウェアを使用した臨床試験プログラミングに関心のある専門家向けに設計されています。この試験では、臨床試験データの作成と管理、統計レポートの生成、SAS 9.4ソフトウェアを使用したプログラミングデータ分析における候補者の知識とスキルをテストします。 Sasinstitute A00-282認定は、候補者が臨床試験プログラマーとして働くために必要なスキルを持ち、臨床研究の成功に貢献できることを示しています。


SASINSTITUTE A00-282認定試験は、70の複数選択の質問で構成されるコンピューターベースの試験です。候補者は、試験を完了するために合計2.5時間です。この試験の合格スコアは70%であり、試験に合格した候補者はSasinStitute認定資格を受け取ります。

 

A00-282問題集には更新された練習テストと144独特な問題:https://jp.fast2test.com/A00-282-premium-file.html


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어