SAS_Institute
A00-281 · Question #77
The following SAS program is submitted: Which alternative program creates an equivalent BASE_BP data set?
The correct answer is A. proc sort data=VS (keep=usubjid vsstresn vstestcd) out=BASE_BP (drop=vstestcd). See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
Which alternative program creates an equivalent BASE_BP data set?
Options
- Aproc sort data=VS (keep=usubjid vsstresn vstestcd) out=BASE_BP (drop=vstestcd);
- Bdata BASE_BP;
- Cproc sort data=VS (keep=usubjid vsstresn vstestcd) out=BASE_BP (drop=vstestcd);
- Ddata BASE_BP (keep=usubjid vsstresn vstestcd);
How the community answered
(21 responses)- A86% (18)
- B10% (2)
- D5% (1)
Community Discussion
No community discussion yet for this question.