SAS_Institute
A00-280 · Question #85
The following output is displayed: Table of GENDER by ANSWER GENDER ANSWER Frequency| 1 | 2 | 3 | Total ---------+----------+----------+---------- 1 | 12 | 22 | 5 | 39…
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;
How the community answered
(39 responses)- A77% (30)
- B3% (1)
- C13% (5)
- D8% (3)
Community Discussion
No community discussion yet for this question.