SAS_Institute
A00-280 · Question #95
A00-280 Question #95: Real Exam Question with Answer & Explanation
Sign in or unlock A00-280 to reveal the answer and full explanation for question #95. The question stem and answer options stay visible for context.
Question
Given the data set HE:
USUBJID HETERM HESEQ HEDUR
201027 HOSPITALIZATION 2 50
201027 HOSPITALIZATION 3
201027 HOSPITALIZATION 4 10
201046 HOSPITALIZATION 1 5
201046 HOSPITALIZATION 2 9
The following SAS program is submitted:
data hosp;
retain hospdurd;
set HE;
by usubjid;
if first.usubjid then hospdurd=0;
hospdurd = hospdurd + hedur;
if last.usubjid;
run;
What will the values be of variable HOSPURDURD for the two subjects?
Options
- A5, missing
- Bmissing, missing
- C65, 9
- D5, 9
Unlock A00-280 to see the answer
You've previewed enough free A00-280 questions. Unlock A00-280 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.