SASInstitute Clinical Trials Programming Using SAS 9.4 - A00-282 模擬練習
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?
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?
正解: B
Which SAS program will apply the data set label 'Demographics' to the data set named DEMO?
正解: C
Which code segment includes a statement that would reset the graphics counter and ensure a 6in by
4in image is produced?
4in image is produced?
正解: C
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?

You want to store all calculated means and standard deviations in one SAS data set.
Which statement must be added to the program?
正解: B
Which statement will produce report output that can be opened in Microsoft Word?
正解: B
This question will ask you to provide lines of missing code.
Given the following SCORE data set:

Variable LOCF contains the imputed score that would replace the missing SCORE value (based on last observation carried forward method).
Which SAS statements complete the program?
Given the following SCORE data set:

Variable LOCF contains the imputed score that would replace the missing SCORE value (based on last observation carried forward method).
Which SAS statements complete the program?
正解: B
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?


正解: B
A SAS program is submitted and the following log is written.

What is the cause of this error message?

What is the cause of this error message?
正解: B
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:
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