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.

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. Please enter the line of code that will correctly complete the program. Note: Case is ignored. Do...

April 5, 2024 No Comments READ MORE +

What is the required type of data for the variable in this procedure?

Review the following procedure format: PROC TTEST date=date; class group-variable; var variable; run; What is the required type of data for the variable in this procedure?A . CharacterB . ContinuousC . CategoricalD . TreatmentView AnswerAnswer: B

April 5, 2024 No Comments READ MORE +

Which type of clinical trials data is this?

Given the following data set: Which type of clinical trials data is this?A . DemographicsB . LaboratoryC . Medical HistoryD . Vital SignsView AnswerAnswer: D

April 5, 2024 No Comments READ MORE +

Data will be reported by onset week. Day 1?

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 . if...

April 5, 2024 No Comments READ MORE +

Which OPTION displays all SAS language statements generated during macro execution?

Which OPTION displays all SAS language statements generated during macro execution?A . MPRINTB . MLOGICC . MSTOREDD . MRECALLView AnswerAnswer: A

April 5, 2024 No Comments READ MORE +

Which SQL statement produced this output?

The following partial output was produced from the SAS Dictionary Tables. Which SQL statement produced this output?A . proc sql; select * from dictionary.macros where scope = 'global'; quit;B . proc sql; select * from dictionary.macros where scope = 'GLOBAL'; quit;C . proc sql; select scope, name from dictionary.macros where...

April 5, 2024 No Comments READ MORE +

Which type of output will be created by the program?

Given the data set WORK.BP with the following variable list: The following SAS program is submitted: ods select ExtremeObs; proc univariate data=WORK.BP; var DIABP; id PTNO; run; Which type of output will be created by the program?A . a table of the highest and lowest values of DIABP over all...

April 5, 2024 No Comments READ MORE +

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

Which code segment would you use to derive the numeric variable AVAL from AVALC by stripping off non-numeric characters? A . aval = put(compress(avalc, '<>='), best12.);B . aval = input(compress(avalc, '<>='), best12.);C . aval = input(substr(avalc, 2,2), best12.);D . aval = put(substr(avalc, 2,2), best12.);View AnswerAnswer: B

April 4, 2024 No Comments READ MORE +

What is the result?

Given the SAS data set WORK.BP What is the result?A . WORK.HIGHBP has 1 observation WORK.NORMBP has 1 observation WORK.INVESTBP has 3 observationsB . WORK.HIGHBP has 1 observation WORK.NORMBP has 1 observation WORK.INVESTBP has 4 observationsC . WORK.HIGHBP has 1 observation WORK.NORMBP has 1 observation WORK.INVESTBP has 2 observationsD ....

April 4, 2024 No Comments READ MORE +

Which alternative program creates an equivalent BASE_BP data set?

The following SAS program is submitted: Which alternative program creates an equivalent BASE_BP data set?A . proc sort data=VS (keep=usubjid vsstresn vstestcd) out=BASE_BP (drop=vstestcd); where vstestcd in('DIABP','SYSBP'); by usubjid; run;B . data BASE_BP; set VS (keep=usubjid vsstresn); if vstestcd in('DIABP','SYSBP'); run;C . proc sort data=VS (keep=usubjid vsstresn vstestcd) out=BASE_BP (drop=vstestcd);...

April 4, 2024 No Comments READ MORE +