Unit 5: Time Series Regression - Practice Quiz

INT395 — Supervised Learning 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 Which of the following best describes a Time Series dataset?

A. A collection of data points collected from random individuals at a single point in time.
B. A dataset containing only images captured at different locations.
C. A sequence of data points indexed in time order, often with equal intervals.
D. A dataset where the target variable is categorical and independent of time.

2 In the context of Time Series analysis, what does Stationarity imply?

A. The time series has a constant trend increasing over time.
B. The seasonal component of the data is strictly periodic.
C. The data contains no missing values.
D. The statistical properties (mean, variance, covariance) are constant over time.

3 Which component of a time series represents a long-term increase or decrease in the data?

A. Noise (Irregularity)
B. Trend
C. Seasonality
D. Cyclicality

4 What is the difference between Univariate and Multivariate time series?

A. Univariate has irregular intervals; Multivariate has regular intervals.
B. Univariate involves a single variable varying over time; Multivariate involves multiple variables varying over time.
C. Univariate is for stationary data; Multivariate is for non-stationary data.
D. Univariate uses regression; Multivariate uses classification.

5 When preparing time series data for supervised learning, what is a Lag Feature?

A. The error term from a moving average model.
B. A future value used to predict the past.
C. Observation from a previous time step used as an input feature (e.g., ).
D. The difference between the current value and the mean.

6 Which of the following is a common method to handle Irregular Intervals in time series data before modeling?

A. Dropping all timestamps.
B. Resampling or Interpolation to a fixed frequency.
C. Using a random number generator to fill gaps.
D. Ignoring the time index and treating it as cross-sectional data.

7 Why is K-Fold Cross-Validation with random shuffling inappropriate for time series data?

A. It causes data leakage by using future data to predict past data.
B. It is too computationally expensive.
C. Time series data is always too small for K-Fold.
D. It assumes the data is non-stationary.

8 What is the Walk-Forward Validation (or Time Series Split) strategy?

A. Using a sliding or expanding window where the training set consists of past data and the test set consists of immediate future data.
B. Randomly selecting 20% of the data for testing.
C. Training on all data and testing on the same data.
D. Splitting data based on the magnitude of the values.

9 Which mathematical operation is commonly used to transform a non-stationary series with a trend into a stationary one?

A. Multiplication
B. Integration
C. Squaring
D. Differencing (e.g., )

10 In an Autoregressive (AR) model of order , denoted as AR(), the current value is predicted based on:

A. A moving average of the entire dataset.
B. Independent external variables only.
C. A linear combination of past values.
D. Past forecast errors.

11 The equation represents which model?

A. AR(1)
B. Random Walk
C. ARIMA(1,1,1)
D. MA(1)

12 What does the 'I' in ARIMA stand for?

A. Independent
B. Interpolated
C. Integrated
D. Irregular

13 In the notation ARIMA(p, d, q), what does the parameter represent?

A. The seasonality period.
B. The size of the moving average window.
C. The number of times that the raw observations are differenced.
D. The number of lag observations included in the model.

14 Which plot is most useful for determining the order of a Moving Average (MA) model?

A. Autocorrelation Function (ACF)
B. Scatter plot
C. Partial Autocorrelation Function (PACF)
D. Histogram

15 Which plot is most useful for determining the order of an Autoregressive (AR) model?

A. Partial Autocorrelation Function (PACF)
B. Spectral Density Plot
C. Autocorrelation Function (ACF)
D. Box Plot

16 What distinguishes SARIMA from ARIMA?

A. SARIMA is only for multivariate data.
B. SARIMA handles missing values better.
C. SARIMA explicitly models Seasonal components.
D. SARIMA does not require stationarity.

17 In SARIMA notation , what does represent?

A. The number of features.
B. The number of time steps for a single seasonal period.
C. The order of the polynomial trend.
D. The maximum value of the series.

18 If a time series is a White Noise process, which of the following is true?

A. It strictly follows a sinusoidal wave.
B. It has zero autocorrelation for all lags .
C. Its mean and variance change rapidly over time.
D. It can be perfectly predicted using linear regression.

19 What is the primary risk of using standard Min-Max Scaling on the entire dataset before splitting into train/test in time series?

A. It changes the time order.
B. It makes the data non-stationary.
C. It introduces Lookahead Bias (Data Leakage).
D. It removes the seasonality.

20 Which test is commonly used to check for Stationarity?

A. ANOVA
B. Chi-Square test
C. Augmented Dickey-Fuller (ADF) test
D. T-test

21 Consider the equation: . This is an example of:

A. Explosive AR(1) process.
B. Stationary AR(1) process.
C. AR(1) with unit root.
D. MA(1) process.

22 In the context of Time Series Regression, what are Exogenous Variables?

A. Variables that are predicted by the model.
B. External variables that influence the target but are not influenced by it.
C. Variables representing the error term.
D. Internal lag variables derived from the target.

23 If a time series exhibits a variance that increases over time (heteroscedasticity), which transformation is commonly applied to stabilize variance?

A. Logarithmic Transformation
B. Differencing
C. Adding a constant
D. Standardization

24 What is an Expanding Window split strategy?

A. The training set size remains constant and slides forward.
B. The test set size grows while the training set shrinks.
C. Data is shuffled and split randomly.
D. The training set starts small and grows in size as new data becomes available.

25 What is the consequence of Over-differencing a time series?

A. It increases the variance of the trend.
B. It makes the trend more pronounced.
C. It introduces artificial noise and negative autocorrelation.
D. The series becomes perfectly linear.

26 Which of the following describes a Random Walk model?

A. ARIMA(1, 0, 0)
B. ARIMA(0, 0, 1)
C. ARIMA(0, 1, 0)
D. ARIMA(1, 1, 1)

27 In an AR(1) model , if , the series is:

A. A Random Walk (Non-stationary)
B. Stationary
C. White Noise
D. Mean reverting

28 Which metric provides a penalty for adding parameters to a model, helping to avoid overfitting in ARIMA model selection?

A. R-Squared
B. MAE (Mean Absolute Error)
C. MSE (Mean Squared Error)
D. AIC (Akaike Information Criterion)

29 For a monthly time series with strong yearly seasonality, what is the value of the seasonal period parameter ?

A. 7
B. 12
C. 4
D. 30

30 What is Seasonal Differencing?

A.
B. where is the seasonal period.
C.
D.

31 A model defined as is an:

A. MA(2)
B. AR(2)
C. AR(1)
D. ARMA(1,1)

32 The Ljung-Box Test is applied to the residuals of a time series model to check:

A. If the residuals are normally distributed.
B. If the residuals differ significantly from white noise (i.e., if there is remaining autocorrelation).
C. If the original data was stationary.
D. If the model parameters are statistically significant.

33 How are missing values typically handled in time series if dropping them is not an option?

A. Replace with zero.
B. Replace with the dataset maximum.
C. Replace with the dataset standard deviation.
D. Time-based interpolation (e.g., linear) or Forward Fill.

34 Which component is represented by in SARIMA?

A. Trend Differencing order
B. Seasonal Moving Average order
C. Seasonal Differencing order
D. Seasonal Autoregressive order

35 If the ACF plot decays slowly (linear decay) while the PACF shows a sharp cutoff at lag 1, the series is likely:

A. MA(1)
B. ARMA(1,1)
C. White Noise
D. AR(1)

36 In time series regression, what is a Rolling Window feature?

A. A feature computed by aggregating (mean, max, etc.) values over a fixed-size window of past observations.
B. A technique to increase the sampling rate.
C. A window that randomly selects features.
D. A feature that looks into the future.

37 Which of the following equations represents an ARIMA(1,1,1) model (excluding constant)? Let .

A.
B.
C.
D.

38 When encoding cyclical time features like 'Month of Year' (1-12) for regression, what is the best approach to preserve the cycle (i.e., Dec is close to Jan)?

A. One-Hot Encoding
B. Binary Encoding
C. Sine and Cosine transformation
D. Label Encoding (1, 2, ..., 12)

39 What is Naive Forecasting?

A. Using a complex neural network.
B. Predicting the current value as the average of all past values.
C. Predicting the value at time to be equal to the value at time .
D. Predicting zero for all future steps.

40 What is the key assumption of the Moving Average (MA) model regarding shocks/errors?

A. Current value depends on past values of the variable.
B. Errors are correlated with the independent variables.
C. Current value depends on current and past unobserved white noise error terms.
D. Errors increase exponentially with time.

41 In the context of SARIMA, what is an Exogenous regressor often denoted as?

A. ARIMAS
B. ARIMAE
C. XY-ARIMA
D. SARIMAX

42 If a time series has a unit root, the series is:

A. Stationary
B. Seasonal
C. Deterministic
D. Non-Stationary

43 Which ARIMA model is theoretically equivalent to Simple Exponential Smoothing?

A. ARIMA(2,2,2)
B. ARIMA(0,1,1)
C. ARIMA(0,0,0)
D. ARIMA(1,0,0)

44 What is the purpose of Auto-Regressive terms in a model?

A. To integrate the time series.
B. To model the relationship between an observation and a lagged observation.
C. To remove seasonality.
D. To model the relationship between an observation and a residual error.

45 Why is it important to examine the Residuals of a fitted time series model?

A. To ensure they have high autocorrelation.
B. To ensure they follow a clear trend.
C. To ensure they are all positive.
D. To ensure they resemble random white noise.

46 What implies that a Time Series is Deterministic?

A. It is a random walk.
B. It has infinite variance.
C. It contains a stochastic component.
D. It can be perfectly predicted by a mathematical function of time (e.g., ).

47 In a Multi-step forecast strategy, what is the 'Direct' method?

A. Using only the most recent observation.
B. Building a separate model for each future time step to be predicted.
C. Ideally predicting one step ahead and using that prediction for the next step.
D. Averaging the results of AR and MA models.

48 What is the 'Recursive' (or Iterative) multi-step forecast strategy?

A. Predicting all steps simultaneously using a vector output.
B. Using a different algorithm for every step.
C. Training on future data.
D. Predicting , then using that prediction as input to predict , and so on.

49 Which transformation is the inverse of Differencing?

A. Cumulative Sum (Integration)
B. Logarithm
C. Exponentiation
D. Differentiation

50 When is an ARIMA model considered Invertible?

A. When the AR polynomial roots lie inside the unit circle.
B. When .
C. When it can be rewritten as an infinite AR process.
D. When the MA polynomial roots lie outside the unit circle.