Given the following data at WORK DEMO:
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;
B
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;
A
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?
B
What information can be found in the SAS Dictionary tables? (Choose two.)
A, C
Given the following data set:
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;
B
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
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;
D
Given the following data set:
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;
A
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.
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.).
BYSUBJID;
BYSUBJID;
Given the data set WORK.BP with the following variable list:
Which output will be created by the program?
D