Q: Which of the following statements accurately describes the null hypothesis? Select all that apply.
- The null hypothesis typically assumes that observed data does not occur by chance.
- The null hypothesis is accepted as true only if there is convincing evidence for it.
- The null hypothesis is assumed to be true unless there is convincing evidence to the contrary.
- The null hypothesis typically assumes that observed data occurs by chance.
Q: What term describes the probability of rejecting the null hypothesis
when it is true?
- P-value
- Confidence interval
- Alternative hypothesis
- Significance level
Q: A data professional conducts a hypothesis test. They fail to reject
the null hypothesis. What statement best describes their conclusion?
- Their significance level is greater than their p-value
- Their confidence level is greater than their p-value
- Their p-value is greater than their significance level.
- Their p-value is greater than their confidence level
Q: A data professional conducts a hypothesis test. When they draw their
conclusion, they commit a type I error. Which of the following statements
describe their error? Select all that apply.
- They fail to reject a null hypothesis that is actually false.
- They conclude their result occurred by chance when in fact it is statistically significant.
- They reject a null hypothesis that is actually true.
- They conclude their result is statistically significant when in fact it occurred by chance.
Q: A data professional at an emergency response center conducts a
hypothesis test to identify optimal ambulance routes. They just found the
p-value. What should they do next?
- Choose the significance level
- State the alternative hypothesis
- State the null hypothesis
- Reject or fail to reject the null hypothesis
Q: A data professional conducts a hypothesis test. They choose a
significance level of 10%. They calculate a p-value of 12.4%. What conclusion
should they draw?
- Reject the alternative hypothesis.
- Fail to reject the null hypothesis.
- Fail to reject the alternative hypothesis.
- Reject the null hypothesis
Q: A data professional is conducting a two-sample t-test. What does
their alternative hypothesis state?
- There is no difference between two population means.
- There is a difference between two population proportions.
- There is no difference between two population proportions.
- There is a difference between two population means.
Q: A data professional conducts a hypothesis test to compare the mean
annual sales of two different restaurants in the same restaurant chain. They
write the following code:
scipy.stats.ttest_ind(a=530,
b=550, equal_var=FALSE)
What does the argument equal_var=FALSE refer to?
- Whether or not the population variance of the two samples is assumed to be equal
- Significance level
- P-value
- Observations from the first sample
Q: Which of the following statements accurately describe the null
hypothesis? Select all that apply.
- The alternative hypothesis typically assumes that observed data occurs by chance.
- The null hypothesis typically assumes that observed data does not occur by chance.
- The null hypothesis typically assumes that observed data occurs by chance.
- The alternative hypothesis typically assumes that observed data does not occur by chance.
Q: To draw a conclusion about the null hypothesis, what two concepts
are compared?
- Confidence level and significance level
- P-value and significance level
- P-value and alternative hypothesis
- Alternative hypothesis and significance level
Q: A data professional conducts a hypothesis test to compare the mean
annual sales of two different restaurants in the same restaurant chain. They
write the following code:
scipy.stats.ttest_ind(a=530,
b=550, equal_var=FALSE)
What does the argument a=530 refer to?
- Whether or not the population variance of the two samples is assumed to be equal
- Significance level
- P-value
- Observations from the first sample (CORRECT)
Q: What is the term for the arbitrary threshold determining whether an
observed difference between groups occurred by chance?
- P-value
- Maximum likelihood
- Statistical significance
- Confidence level
Q: A data professional conducts a hypothesis test. When they draw their
conclusion, they fail to reject a null hypothesis, which is actually false.
What type of error do they commit?
- Type I
- Type III
- Type II
- Type IV
Q: A data professional conducts a hypothesis test. They choose a
significance level of 5%. They calculate a p-value of 3.3%. What conclusion
should they draw?
- Reject the alternative hypothesis.
- Fail to reject the null hypothesis.
- Reject the null hypothesis.
- Fail to reject the alternative hypothesis.
Q: In a one-sample hypothesis test of the mean, what are the typical
options for the alternative hypothesis? Select all that apply.
- The population mean is equal to an observed value.
- The population mean is greater than an observed value.
- The population mean is less than an observed value.
- The population mean is not equal to an observed value.
Q: A data professional conducts a hypothesis test. They choose a
significance level of 1%. They calculate a p-value of 0.01%. What conclusion
should they draw?
- Fail to reject the null hypothesis.
- Reject the alternative hypothesis.
- Fail to reject the alternative hypothesis.
- Reject the null hypothesis.
Q: A data professional is conducting a hypothesis test. Their null
hypothesis states that there is no difference between two population
proportions. What type of test are they conducting?
- Two-sample z-test
- Two-sample t-test
- One-sample z-test
- One-sample t-test
18. What does the concept of p-value refer to?
- The probability of observing results as or more extreme than those observed when the null hypothesis is true
- The probability of observing results less extreme than those observed when the null hypothesis is true
- The probability of rejecting the null hypothesis when it is false
- The probability of rejecting the null hypothesis when it is true
19. When would a data professional reject the null hypothesis?
- When their test statistic is less than their p-value
- When their significance level is less than their p-value
- When their p-value is less than their test statistic
- When their p-value is less than their significance level