BA-MCQ
BA-MCQ
1. Which of the following is NOT a factor that influences the predictability of an event or
quantity?
B) Judgmental forecasting
C) Exponential smoothing
D) ARIMA models
Answer: B) It can incorporate information about other variables affecting the outcome.
A) Strategic planning
Answer: D) When predicting what will happen is more important than understanding why
9. In time series forecasting, which model would you use if you are interested in capturing
both trend and seasonal patterns?
A) Naïve method
C) Decomposition model
D) ARIMA model
Unit-2:
- B) `ts()`
- C) `time_series()`
- D) `autoplot()`
- Answer: B) `ts()`
4. When using the `ts()` function, what frequency should be used for monthly data?
- A) 4
- B) 12
- C) 52
- D) 365
- Answer: B) 12
- D) A numeric vector
- Answer: B) A time series object with annual data starting from 2012
6. Which function is frequently used to plot time series data in R?
- A) `plot()`
- B) `ggplot()`
- C) `autoplot()`
- D) `hist()`
- Answer: C) `autoplot()`
7. What kind of patterns can be visualized using time plots in time series data?
- A) Unusual observations
- B) Seasonal patterns
8. What was the cause of the period in 1989 when no passengers were carried in the Ansett
Airlines data?
- A) An industrial dispute
- C) A natural disaster
9. In the monthly sales of antidiabetic drugs time series, what is the main feature observed at
the start of each year?
10. Why is it important to incorporate observed features from time plots into forecasting
models?
- C) To eliminate outliers
Unit 3:
1. Which of the following describes a long-term increase or decrease in time series data?
A) Seasonal pattern
B) Trend
C) Cyclic pattern
D) Scatterplot
Answer: B) Trend
2. What type of time series pattern occurs due to factors such as time of year or day of the
week?
A) Trend
B) Cyclic pattern
C) Seasonal pattern
D) Correlation
C) An unchanging trend
D) Seasonal variations
C) Cyclic patterns have variable frequency; seasonal patterns have fixed frequency
Answer: C) Cyclic patterns have variable frequency; seasonal patterns have fixed frequency
A) Years
B) Seasons
C) Months
D) Days
Answer: B) Seasons
C) Seasonal variations
D) Cyclic patterns
A) Scatterplots
B) Lag plots
C) Seasonal plots
A) Seasonal patterns
B) Cyclic patterns
2. In the equation \( R^2 = \frac{\sum (\hat{y}_t - \bar{y})^2}{\sum (y_t - \bar{y})^2} \), what
does \( \sum (y_t - \bar{y})^2 \) represent?
3. What does \( \epsilon_t \) represent in the regression model \( y_t = \beta_0 + \beta_1 x_t +
\epsilon_t \)?
- A) The intercept
- D) The coefficient
4. Which of the following is an assumption made in linear regression models regarding the
error terms \( \epsilon_t \)?
5. What is the purpose of the \( \text{geom_abline} \) function in the ggplot2 plot of actual vs.
fitted values?
- C) To add a reference line where the predicted values equal the actual values
Answer: C) To add a reference line where the predicted values equal the actual values
- A) The change in the dependent variable due to a one-unit change in the predictor variable,
holding all other predictors constant.
Answer: A) The change in the dependent variable due to a one-unit change in the predictor
variable, holding all other predictors constant.
- C) The proportion of the variance in the dependent variable explained by the independent
variables
- C) The model explains a large proportion of the variance in the dependent variable.
Answer: C) The model explains a large proportion of the variance in the dependent variable.
9. In the multiple regression equation \( y_t = \beta_0 + \beta_1 x_{1,t} + \beta_2 x_{2,t} +
\ldots + \beta_k x_{k,t} + \epsilon_t \), what is \( \beta_0 \)?
10. What does the term "least squares estimation" refer to in regression analysis?
Additional Exercises
- Answer: B
- Answer: B
- A) Shapiro-Wilk test
- B) Breusch-Godfrey test
- C) T-test
- D) ANOVA
- Answer: B
4. If a plot of residuals against fitted values shows a funnel shape, what does this indicate?
- A) Normality of residuals
- B) Independence of residuals
- C) Heteroscedasticity
- Answer: C
5. Which of the following indicates a potential spurious regression?
- Answer: B
6. What does the Breusch-Godfrey test result of a p-value < 0.05 indicate?
- D) Homoscedasticity
- Answer: B
7. When examining residuals, which of the following would NOT be a reason to consider
modifying the regression model?
- A) Presence of outliers
- Answer: B
- D) To assess multicollinearity
- Answer: B
9. In regression analysis, what does it mean if the residuals are normally distributed?
- Answer: D
- Answer: B
Additional Exercises
- B) When seasonal effects vary proportionally with the level of the series.
- Answer: B) When seasonal effects vary proportionally with the level of the series.
- B) Seasonal fluctuations.
6. If the seasonal component \(S_t\) shows consistent patterns every year, which decomposition
model might be suitable?
- A) Additive
- B) Multiplicative
- C) Both A and B
- D) Neither A nor B
- Answer: A) Additive
8. The formula \(\log y_t = \log S_t + \log T_t + \log R_t\) is derived from which model?
- A) Additive model
- B) Multiplicative model
- C) Seasonal model
- D) Random model
9. Why might analysts prefer using the trend-cycle component over seasonally adjusted data?
- A) Trend component
- B) Remainder component
- C) Seasonal component
- D) All components
Additional Exercises
1. What does a moving average of order m (m-MA) primarily do in time series analysis?
2. In the moving average formula \( T_t = \frac{1}{m} \sum_{j=-k}^{k} y_{t+j} \), what does
\( k \) represent?
- B) It is always symmetric.
- A) To remove seasonality
6. Which of the following is true about the remainder component in classical decomposition?
- C) It is always positive.
- B) Exponential smoothing
Additional Exercises
1. Which of the following best describes the Simple Exponential Smoothing (SES) method?
Answer: c) It is suitable for forecasting data with no clear trend or seasonal pattern.
2. In Holt’s linear trend method, which parameter controls the smoothing of the trend
component?
- a) α (Alpha)
- b) β* (Beta)
- c) φ (Phi)
- d) γ (Gamma)
Answer: b) β* (Beta)
3. In the damped trend method, what is the typical range for the damping parameter φ (Phi)?
- a) 0.1 to 0.5
- b) 0.6 to 0.9
- c) 0.8 to 0.98
- d) 1 to 2
4. What is the primary difference between the naive and average forecasting methods?
- a) The naive method uses the last observation, while the average method uses the simple
average of all observations.
- b) The naive method considers all past data equally, while the average method gives more
weight to recent data.
- c) The naive method accounts for seasonality, while the average method does not.
Answer: a) The naive method uses the last observation, while the average method uses the
simple average of all observations.
5. In an ARIMA model, what does the term "autoregressive" refer to?
- a) ℓt + hbt
- b) ℓt−1 + φbt−1
- d) ℓT + φbT/(1−φ)
Answer: a) ℓt + hbt
8. In the AR(1) model yt=18−0.8yt−1+εt, what is the value of the autoregressive parameter
ϕ1?
- a) 18
- b) -0.8
- c) 1.3
- d) -0.7
Answer: b) -0.8
9. What is the main disadvantage of Holt’s linear trend method when forecasting long into the
future?
- b) It assumes the trend will continue indefinitely, which may lead to over-forecasting.
Answer: b) It assumes the trend will continue indefinitely, which may lead to over-
forecasting.
10. Which method would you use if you expect the trend to gradually flatten out over time?
- d) ARIMA Model
Additional Exercises
- D) AICc values
- D) No problem arises
3. What is necessary for all variables in a regression model with ARMA errors?
- A) gts()
- B) hts()
- C) ts()
- D) aggts()
Answer: B) hts()
- A) Nested only
- B) Crossed only
9. In the context of ARMA errors, what is crucial to ensure the consistency of estimated
coefficients?
- C) Ignoring multicollinearity