SAS_Institute
A00-280 · Question #85
A00-280 Question #85: Real Exam Question with Answer & Explanation
The correct answer is A. proc freq data=WORK.TESTDATA; tables gender * answer / nocol norow nopercent; run;. See the full explanation below for the reasoning.
Question
The following output is displayed:
Table of GENDER by ANSWER
GENDER ANSWER
Frequency|
1 | 2 | 3 | Total
---------+----------+----------+----------
1 | 12 | 22 | 5 | 39
---------+----------+----------+----------
2 | 22 | 8 | 3 | 33
---------+----------+----------+----------
Total 34 30 8 72
Frequency Missing = 4
Which SAS program created this output?
Options
- Aproc freq data=WORK.TESTDATA; tables gender * answer / nocol norow nopercent; run;
- Bproc freq data=WORK.TESTDATA; tables answer * gender / nocol norow nopercent; run;
- Cproc freq data=WORK.TESTDATA; tables gender * answer / nocol norow nopercent missing; run;
- Dproc freq data=WORK.TESTDATA; tables answer * gender / nocol norow nopercent missing; run;
Community Discussion
No community discussion yet for this question.