SAS_Institute
A00-280 · Question #81
A00-280 Question #81: Real Exam Question with Answer & Explanation
Sign in or unlock A00-280 to reveal the answer and full explanation for question #81. The question stem and answer options stay visible for context.
Question
The following SAS program is submitted:
data ae;
input PTNO AESOC $ 6-32 AEPT $ 34-56 ONTREAT $;
cards;
2001 CARDIAC DISORDERS Cardiac arrest Y
2002 Infections and infestations Empyema Y
2003 Hepato-biliary disorders Hepatic failure Y
2004 Infections and infestations Legionellosis N
2005 Nervous system disorders Cerebral hemorrhage Y
2006 Cardiac disorders Cardiac arrest N
2004 Cardiac disorders Atrial fibrillation N
2006 Infections and infestations Wound infection Y
2007 Renal and urinary disorders Renal failure Y
2007 Gastrointestinal disorders Pancreatitis acute Y
2007 Gastrointestinal disorders Gastric ulcer Y
2008 Vascular disorders Hypertension Y
2008 Infections and infestations Sepsis Y
2010 Cardiac disorders Cardiac arrest Y
2010 Renal and urinary disorders Renal failure acute Y
2011 Social circumstances Homicide N
;
run;
proc freq data=WORK.AE noprint;
where ontreat='Y'; tables aesoc / out=WORK.FREQ1;
run;
proc print data=WORK.FREQ1 noobs;
where aesoc='Cardiac disorders';
var count;
run;
What result is displayed for the variable COUNT?
Options
- A1
- B2
- C3
- D4
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.