SAS_Institute
A00-240 · Question #24
The SAS data set RESULT contains the following variables: Region (GrpA or GrpB) Sales (dollars per year) Which SAS programs can be used to find the p-value for comparing GrpA sales with GrpB sales? (C
Sign in or unlock A00-240 to reveal the answer and full explanation for question #24. The question stem and answer options stay visible for context.
ANOVA and ANCOVA
Question
The SAS data set RESULT contains the following variables:
- Region (GrpA or GrpB)
- Sales (dollars per year) Which SAS programs can be used to find the p-value for comparing GrpA sales with GrpB sales? (Choose two.)
Options
- Aproc ttest data = RESULT; class Region; var Sales; run;
- Bproc ttest data = RESULT; class Region; model Sales = Region; run;
- Cproc glm data = RESULT; class Region; model Sales = Region; run;
- Dproc glm data = RESULT; class Sales; model Sales = Region; run;
Unlock A00-240 to see the answer
You've previewed enough free A00-240 questions. Unlock A00-240 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.
Topics
#t-test#group comparison#hypothesis testing#SAS procedures