Wednesday 20 April 2016

A00-280 Exam Questions & Answers



http://www.certsgrade.com/pdf/a00-280/

Test Information:
Total Questions: 99
Test Number: A00-280
Vendor Name: SAS Institute
Cert Name:  SAS
Test Name: Clinical Trials Programming Using SAS 9
Official Site: http://www.certsgrade.com
For More Details: http://www.certsgrade.com/pdf/a00-280/


Version: 7.0

Question: 1                
 
Given the following data at WORK DEMO:
Description: https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgstiBPQv1nf1PLS2YAZp-mzxlnOR6Q6yCjD8HxeaTfWqHrT_MH2o02oUs8DHdrV9tkdxlJ8rRb1J5vk5fd_hCSMmmll4Zxnh33ygbylXm88R85ZbO7CgBq-bRUgy68PPG6HoHJuiJLcFkm/s1600/1.jpg
Which SAS program prints only the first 5 males in this order from the data set?

A.
proc sort data=WORK.DEMO out=out;
    by sex;
run;
proc print data= out (obs=5);
run;
B.
proc print data=WORK.DEMO(obs=5);
    where Sex='M';
run;
C.
proc print data=WORK.DEMO(where=(sex='M'));
    where obs<=5;
run;
D.
proc sort data=WORK.DEMO out=out;
    by sex descending;
run;
proc print data= out (obs=5);
run;

Answer: B                  

Question: 2               
 
Which SAS program will apply the data set label 'Demographics' to the data set named DEMO?

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

Answer: A                  

Question: 3               
 
The following SAS program is submitted:
proc sort data=SASUSER.VISIT out=PSORT;
    by code descending date cost;
run;
Which statement is true regarding the submitted program?

A. The descending option applies to the variable CODE.
B. The variable CODE is sorted by ascending order.
C. The PSORT data set is stored in the SASUSER library.
D. The descending option applies to the DATE and COST variables.

Answer: B                  

Question: 4               
 
What information can be found in the SAS Dictionary tables? (Choose two.)

A. datasets contained within a specified library
B. values contained within a specified format
C. variables contained within a specified dataset
D. values contained within a specified variable

Answer: A, C                  

Question: 5               
 
Given the following data set:
Description: https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW2opCGR7_DFS532_RpbiPABF2Oiuu6ONYL3z_CU59TcvSrar5s1-1FK8T0VoXEUjfewpDSwWgEWxSbwrO1i8Ps_o_iiGyJIu9ai3OT6he41EQvz0cgYA_IRVmTNNdkiIQr1QNEBtMxcE5/s1600/2.jpg
Which program was used to prepare the data for this PROC PRINT output?

A.
proc sort data=one out=two;
    by subjid;
run;
B.
proc sort data=one out=two nodupkey;
   by subjid;
run;
C.
proc sort data=one out=two nodup;
    by subjid;
run;
D.
proc sort data=one out=two nodupkey;
   by subjid trt;
run;

Answer: B                  

Question: 6               
 
This question will ask you to provide a line of missing code.
The following SAS program is submitted:
Description: https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNkirITVHSb3JK6TJu9el5uupP-c7UMj3WoO8dRg4jg6DZLtsule5Fdo4DfLoHve5W428tGhaf5EnKFVhNJAytI6VhUqC_JOVCwBQv9AfRR5ggkH5maIYRNer6eVPAxFZmkZU-BEcZuVGF/s1600/3.jpg
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;D. TABLES site*group /nocol norow;

Answer: A                   

Question: 7               
 
Which statement correctly adds a label to the data set?

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

Answer: D                  

Question: 8               
 
Given the following data set:
Description: https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjA_tWC98o5WJ1jthRb3nCE-cWhd_5d95ZlZ4ZROsXbeZiazPhk2KuR4xf7e3b9-N6G6QfIOEkpkPj2lWiOInnsLQsgSWy6FfFdwR1slHxns8kuw0Z-1kku78mE-xX7jyZrFqp841ps-wFW/s1600/4.jpg
Which SAS program produced this output?

A.
proc sort data=one(where=(age>50)) out=two;
    by subjid;
run;
B.
proc sort data=one(if=(age>50)) out=two;
    by subjid;
run;
C.
proc sort data=one out=two;
    where=(age>50);
   by subjid;
run;
D.
proc sort data=one out=two;
   if age>50;
   by subjid;
run;

Answer: A                  

Question: 9               

CORRECT TEXT
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.
Description: https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixE85lgt5Ljn7g2NqxklawJ34BYRxjmpPvRg3NMDDoR_XUSxQto37y6OWX-MW2qTlmmYefO52EY1kkORgB8Efn1t99ihjo91y3Fbzw7S_bU6MUzp_Tcq_3eUG6xGdVzSQ2JE4XZfuPyiL4/s1600/5.jpg
In the space below, enter the line of code that will correctly complete the program (Case is ignored. Do not add leading or trailing spaces to your answer.).

Description: https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiH2fNv3oOJ7u-gytb4n81ox7cyeHUcZkOMXZjY9aDkxjrxsx0fkyWVqt0wrAM9UvNdNFq1fFZWCs2TE-MM4REFH17mbDNshw3LfhUf5Sp2439Brqj7n87BdkAxvxecDe0l44yUTfhLQSG/s1600/8.jpg
Answer: BYSUBJID; BYSUBJID;              

Question: 10               

Given the data set WORK.BP with the following variable list:
Description: https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3CDPv6wR7zhq0z22l64bEFysUA71p5aR4097GRpvjkFaOmHWiiZP2Ajic1ozFs858RrnDvGcNjREcw-V9E3i77p-TVzKxZZeruj5REJX3-anSRzoN1rXfwJlPe3qgtWCwApK5rwH9hRcW/s1600/6.jpg
Which output will be created by the program?

Description: https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiatojWECdbPCR0CJy6ngG1JI4fnjGBo7h0lj3xD4cF5ZdfxdaQOerVkAqdty1z4xfdHmkPAW10f9Cf4rOsuYlC8KYxHOPpfD6JNNAmWcLuWbTQxGoQSP_ePs_BbAm2Riydtt-FD448u0Sr/s1600/7.jpg
A. Option A
B. Option B
C. Option C
D. Option D

Answer: D              

http://www.certsgrade.com/pdf/a00-280/



Test Information:
Total Questions: 99
Test Number: A00-280
Vendor Name: SAS Institute
Cert Name:  SAS
Test Name: Clinical Trials Programming Using SAS 9
Official Site: http://www.certsgrade.com
For More Details: http://www.certsgrade.com/pdf/a00-280/

No comments:

Post a Comment