Unit 5 - Practice Quiz

INT395 50 Questions
0 Correct 0 Wrong 50 Left
0/50

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

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

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

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

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

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

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

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

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. The difference between the current value and the mean.
D. Observation from a previous time step used as an input feature (e.g., ).

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

A. Using a random number generator to fill gaps.
B. Dropping all timestamps.
C. Resampling or Interpolation to a fixed frequency.
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 assumes the data is non-stationary.
B. It is too computationally expensive.
C. Time series data is always too small for K-Fold.
D. It causes data leakage by using future data to predict past data.

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

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

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

A. Squaring
B. Integration
C. Multiplication
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. Past forecast errors.
C. A linear combination of past values.
D. Independent external variables only.

11 The equation represents which model?

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

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

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

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

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

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

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

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

A. Spectral Density Plot
B. Partial Autocorrelation Function (PACF)
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 does not require stationarity.
D. SARIMA explicitly models Seasonal components.

17 In SARIMA notation , what does represent?

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

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. It can be perfectly predicted using linear regression.
D. Its mean and variance change rapidly over time.

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 introduces Lookahead Bias (Data Leakage).
B. It changes the time order.
C. It makes the data non-stationary.
D. It removes the seasonality.

20 Which test is commonly used to check for Stationarity?

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

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

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

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

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

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

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

24 What is an Expanding Window split strategy?

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

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

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

26 Which of the following describes a Random Walk model?

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

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

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

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

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

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

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

30 What is Seasonal Differencing?

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

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 original data was stationary.
C. If the residuals differ significantly from white noise (i.e., if there is remaining autocorrelation).
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 the dataset standard deviation.
B. Replace with the dataset maximum.
C. Time-based interpolation (e.g., linear) or Forward Fill.
D. Replace with zero.

34 Which component is represented by in SARIMA?

A. Seasonal Autoregressive order
B. Trend Differencing order
C. Seasonal Differencing order
D. Seasonal Moving Average 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. AR(1)
C. White Noise
D. ARMA(1,1)

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

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

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. Label Encoding (1, 2, ..., 12)
B. One-Hot Encoding
C. Binary Encoding
D. Sine and Cosine transformation

39 What is Naive Forecasting?

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

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

A. Errors are correlated with the independent variables.
B. Current value depends on past values of the variable.
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. SARIMAX
B. ARIMAS
C. XY-ARIMA
D. ARIMAE

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

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

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

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

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

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

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

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

46 What implies that a Time Series is Deterministic?

A. It has infinite variance.
B. It is a random walk.
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. Ideally predicting one step ahead and using that prediction for the next step.
B. Averaging the results of AR and MA models.
C. Building a separate model for each future time step to be predicted.
D. Using only the most recent observation.

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

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

49 Which transformation is the inverse of Differencing?

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

50 When is an ARIMA model considered Invertible?

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