Unit 1: Introduction and Data Preprocessing - Practice Quiz

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

1 What is the primary characteristic of Supervised Learning?

A. The model groups data points based on inherent similarities without predefined categories.
B. The model interacts with an environment and learns via a reward system.
C. The model learns from unlabeled data to find hidden patterns.
D. The model learns from a labeled dataset containing input-output pairs.

2 Which of the following scenarios is a Regression problem?

A. Predicting whether an email is spam or not.
B. Classifying an image as a cat or a dog.
C. Grouping customers based on purchasing behavior.
D. Predicting the price of a house based on its square footage.

3 Which library in Python is the standard for implementing classic machine learning algorithms like Decision Trees and SVMs?

A. NumPy
B. Scikit-learn
C. Matplotlib
D. Pandas

4 In a dataset, Ordinal Data refers to:

A. Categorical data with no intrinsic order (e.g., Red, Blue, Green).
B. Categorical data with a clear ordering or ranking (e.g., Low, Medium, High).
C. Continuous numerical data (e.g., Height, Weight).
D. Binary data (e.g., True/False).

5 Which Pandas function is primarily used to load data from a Comma Separated Values file?

A. pd.load_csv()
B. pd.import_data()
C. pd.read_excel()
D. pd.read_csv()

6 What is the purpose of the df.describe() method in Pandas?

A. To provide summary statistics (mean, std, min, max) for numerical columns.
B. To visualize the correlation matrix.
C. To drop missing values from the dataframe.
D. To show the data types and non-null counts of columns.

7 When handling missing data, what is Imputation?

A. Removing the rows containing missing values.
B. Converting the missing values to a specific category like "Unknown".
C. Replacing missing values with substituted values (e.g., mean, median, mode).
D. Ignoring the column containing missing values.

8 Which visualization is most effective for identifying Outliers in a numerical feature?

A. Bar Chart
B. Scatter Plot
C. Pie Chart
D. Box Plot

9 In the context of outlier detection, what does the IQR (Interquartile Range) represent?

A. The standard deviation of the dataset.
B. The difference between the 75th percentile () and the 25th percentile ().
C. The difference between the maximum and minimum values.
D. The distance between the mean and the median.

10 What is the formula for Min-Max Scaling (Normalization)?

A.
B.
C.
D.

11 Which scaling technique transforms data to have a mean of 0 and a standard deviation of 1?

A. Min-Max Scaling
B. Robust Scaling
C. Standardization (Z-score normalization)
D. Log Transformation

12 Why is One-Hot Encoding preferred over Label Encoding for nominal categorical variables?

A. It requires less memory.
B. It is faster to compute.
C. It prevents the model from assuming a mathematical order or rank between categories.
D. It handles missing values automatically.

13 What is the Dummy Variable Trap?

A. When missing values are replaced by zeros.
B. When independent variables are highly correlated (multicollinearity) due to including all dummy variables.
C. When the target variable is imbalanced.
D. When categorical variables are not encoded.

14 Which technique is commonly used to handle Class Imbalance by generating synthetic samples for the minority class?

A. Principal Component Analysis
B. SMOTE (Synthetic Minority Over-sampling Technique)
C. Random Undersampling
D. Stratified K-Fold

15 What is the primary goal of Feature Selection?

A. To create new features from existing ones.
B. To fill missing values in the features.
C. To scale features to the same range.
D. To select a subset of relevant features to improve model performance and reduce complexity.

16 Which of the following is an example of a Wrapper Method for feature selection?

A. Recursive Feature Elimination (RFE)
B. Variance Threshold
C. Correlation Matrix
D. Lasso Regression (L1 regularization)

17 What is the purpose of train_test_split in machine learning?

A. To split the dataset into training and validation/test sets to evaluate generalization.
B. To separate numerical and categorical columns.
C. To remove outliers from the data.
D. To split the dataset into features () and target ().

18 What is Data Leakage?

A. When the model leaks sensitive user information.
B. When data is lost during file transfer.
C. When information from outside the training dataset (like the test set) is used to create the model.
D. When the variance of the data is too high.

19 Which plot is best for visualizing the relationship between two continuous variables?

A. Bar Chart
B. Scatter Plot
C. Histogram
D. Box Plot

20 In the context of Pandas, what does df.isnull().sum() return?

A. The total number of rows in the dataframe.
B. The count of unique values in each column.
C. The count of missing values in each column.
D. The sum of all values in the dataframe.

21 When performing a train-test split on an imbalanced dataset, which parameter ensures the class distribution is preserved in both sets?

A. test_size=0.2
B. random_state=42
C. stratify=y
D. shuffle=True

22 Which of the following is a technique for Dimensionality Reduction?

A. Linear Regression
B. K-Nearest Neighbors
C. Principal Component Analysis (PCA)
D. Logistic Regression

23 The Curse of Dimensionality refers to:

A. Issues that arise when analyzing data in high-dimensional spaces (sparse data, increased computation).
B. The error caused by using incorrect units of measurement.
C. The difficulty of visualizing 3D data.
D. The inability to add more features to a model.

24 What is Feature Engineering?

A. Downloading datasets from the internet.
B. Selecting the best hardware for training.
C. The process of using domain knowledge to extract or create new features from raw data.
D. Removing all categorical variables.

25 Which Scikit-learn module contains StandardScaler and MinMaxScaler?

A. sklearn.linear_model
B. sklearn.preprocessing
C. sklearn.ensemble
D. sklearn.metrics

26 If a feature has a Variance of 0, what does it imply?

A. The feature has a high correlation with the target.
B. The feature is normally distributed.
C. The feature contains only one unique value for all samples.
D. The feature has missing values.

27 Which of the following is considered Unstructured Data?

A. A SQL database table.
B. An Excel spreadsheet.
C. Images and Audio files.
D. A CSV file with labeled columns.

28 What does a correlation coefficient of -0.9 indicate between two features?

A. A strong positive linear relationship.
B. A weak negative linear relationship.
C. A strong negative linear relationship.
D. No relationship.

29 When using LabelEncoder, how is the data transformed?

A. It converts text labels into integers (0, 1, 2, ...).
B. It scales the data between 0 and 1.
C. It removes the column.
D. It converts text labels into binary columns.

30 Which algorithm is generally NOT sensitive to the scale of features?

A. Support Vector Machines (SVM)
B. K-Nearest Neighbors (KNN)
C. Decision Trees
D. K-Means Clustering

31 In Scikit-Learn, what is the role of the fit() method?

A. To learn parameters (e.g., mean, coefficients) from the training data.
B. To make predictions on new data.
C. To calculate the accuracy of the model.
D. To split the data.

32 What is the difference between fit_transform() and transform()?

A. transform is only used for image data.
B. fit_transform is used on the training set to learn parameters and apply them; transform is used on the test set using learned parameters.
C. They are identical and can be used interchangeably.
D. fit_transform is used on the test set; transform is used on the training set.

33 Which Seaborn plot is used to visualize the Distribution of a single numerical variable?

A. sns.histplot() (or distplot)
B. sns.countplot()
C. sns.heatmap()
D. sns.scatterplot()

34 How do you handle Duplicate Rows in Pandas?

A. df.delete_repeats()
B. df.unique()
C. df.remove_copies()
D. df.drop_duplicates()

35 In PCA, what represents the direction of maximum variance in the data?

A. The Principal Components (Eigenvectors)
B. The Mean vector
C. The Covariance matrix
D. The Eigenvalues

36 What is Target Encoding (or Mean Encoding)?

A. Assigning random numbers to the target.
B. Encoding categorical variables based on the mean of the target variable for that category.
C. Replacing the target with the mean of the features.
D. Encoding the target variable into a One-Hot vector.

37 Which of the following indicates a skewed distribution?

A. Mean = Median = Mode
B. The tail of the distribution is longer on one side than the other.
C. The standard deviation is 0.
D. The distribution is symmetrical.

38 What is the result of executing df.info()?

A. A summary of statistical metrics.
B. The first 5 rows of the DataFrame.
C. A correlation heatmap.
D. A concise summary of the DataFrame including index dtype, columns, non-null values, and memory usage.

39 Before feeding text data into a supervised learning model, it must be converted into numerical vectors. This process is called:

A. Classification
B. Vectorization (e.g., TF-IDF, Bag of Words)
C. Imputation
D. Normalization

40 Which method helps in identifying Multicollinearity among features?

A. Scatter plot of Feature vs Target
B. Heatmap of the Correlation Matrix
C. ROC Curve
D. Confusion Matrix

41 If a dataset has missing values that are MCAR (Missing Completely At Random), which handling method is generally safe if the dataset is large?

A. Using a complex prediction model.
B. Dropping the rows with missing values.
C. Leaving them as NaN.
D. Replacing with a constant like -1.

42 What is the advantage of using a Pipeline in Scikit-Learn?

A. It allows for parallel processing on GPUs.
B. It chains together multiple processing steps (scaling, encoding, modeling) into a single object, preventing data leakage.
C. It creates a graphical user interface.
D. It automatically selects the best algorithm.

43 Which feature selection method uses a model's coef_ or feature_importances_ attribute to select features?

A. Embedded Method
B. Filter Method
C. Unsupervised Method
D. Wrapper Method

44 What is the shape of the output of df.shape in Pandas?

A. (Number of Rows, Number of Columns)
B. (Total Elements,)
C. (Number of Unique Values,)
D. (Number of Columns, Number of Rows)

45 Which of the following is a Classification algorithm?

A. Logistic Regression
B. Polynomial Regression
C. Ridge Regression
D. Linear Regression

46 When detecting outliers using the Z-score method, a common threshold to identify an outlier is a Z-score absolute value greater than:

A. 1
B. 10
C. 1.5
D. 3

47 What is the correct syntax to drop a column named 'ID' from a Pandas DataFrame df?

A. df.delete('ID')
B. df.drop('ID', axis=1)
C. df.remove('ID')
D. df.drop('ID', axis=0)

48 Why is Data Exploration (EDA) a critical first step?

A. It is required by the Python interpreter.
B. To understand data structure, detect anomalies, test assumptions, and determine preprocessing needs.
C. It automatically trains the model.
D. It increases the size of the dataset.

49 Which encoding technique creates a binary column for every category level?

A. Target Encoding
B. One-Hot Encoding
C. Label Encoding
D. Ordinal Encoding

50 What is the main drawback of PCA?

A. It increases the dimensionality of the data.
B. It is computationally very expensive for small datasets.
C. The resulting Principal Components are often difficult to interpret in terms of original features.
D. It only works on categorical data.