Question 1,173 of 1,755
Exploratory Data AnalysishardMultiple ChoiceObjective-mapped

Quick Answer

Principal Component Analysis (PCA) is the correct technique because it directly addresses dimensionality reduction for multicollinearity by transforming correlated features into a set of uncorrelated principal components, ordered by the variance they explain. When a dataset has 500 features with many pairwise correlations above 0.9, PCA’s orthogonal linear projection captures the maximum possible variance in a lower-dimensional space, so keeping the top 50 components preserves the most information while eliminating redundancy. On the AWS Certified Machine Learning Specialty MLS-C01 exam, this scenario tests your understanding that PCA is the go-to method when the goal is variance preservation under high multicollinearity, not feature selection or interpretability—a common trap is choosing Lasso or feature elimination, which discard features rather than transform them. Remember the memory tip: “PCA prioritizes variance, not variables”—it recombines correlated features into fewer, uncorrelated axes, making it ideal for this exact use case.

MLS-C01 Exploratory Data Analysis Practice Question

This MLS-C01 practice question tests your understanding of exploratory data analysis. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A data scientist is exploring a dataset with 500 features and 10,000 samples. The data scientist computes the pairwise correlation matrix and finds that many features have correlations above 0.9. The data scientist wants to reduce the dataset to 50 features while preserving as much variance as possible. Which technique should be used?

Question 1hardmultiple choice
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Apply Principal Component Analysis (PCA) and keep the top 50 principal components.

Principal Component Analysis (PCA) is the correct technique because it performs an orthogonal linear transformation that projects the original 500 features into a new coordinate system where the axes (principal components) are ordered by the variance they capture. By keeping the top 50 principal components, the data scientist retains the maximum possible variance in the reduced 50-dimensional space, directly addressing the goal of preserving variance while handling high multicollinearity.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Remove all but one feature from each group of highly correlated features.

    Why it's wrong here

    This approach may discard information that is not redundant.

  • Apply Principal Component Analysis (PCA) and keep the top 50 principal components.

    Why this is correct

    PCA finds orthogonal directions of maximum variance and can reduce dimensionality effectively.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Use Linear Discriminant Analysis (LDA) to project to 50 dimensions.

    Why it's wrong here

    LDA is supervised and requires a target variable; it may not be appropriate if the goal is unsupervised dimensionality reduction.

  • Use t-Distributed Stochastic Neighbor Embedding (t-SNE) to reduce to 50 dimensions.

    Why it's wrong here

    t-SNE is non-linear and stochastic; it is not suitable for reducing to a specific number of components for modeling.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Cisco often tests the distinction between unsupervised variance-preserving techniques (PCA) and supervised or visualization-specific techniques (LDA, t-SNE), leading candidates to mistakenly choose LDA for dimensionality reduction without recognizing its supervised nature and dimension limit.

Detailed technical explanation

How to think about this question

PCA works by computing the eigenvectors of the covariance matrix of the data; the eigenvalues indicate the amount of variance captured by each principal component. In this scenario with 500 features and 10,000 samples, the covariance matrix is 500x500, and PCA will produce components that are linear combinations of the original features, effectively decorrelating the highly correlated features. A real-world scenario is in genomic data analysis, where thousands of gene expression levels are highly correlated, and PCA is used to capture the dominant biological signals in a handful of components.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related MLS-C01 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free MLS-C01 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this MLS-C01 question test?

Exploratory Data Analysis — This question tests Exploratory Data Analysis — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Apply Principal Component Analysis (PCA) and keep the top 50 principal components. — Principal Component Analysis (PCA) is the correct technique because it performs an orthogonal linear transformation that projects the original 500 features into a new coordinate system where the axes (principal components) are ordered by the variance they capture. By keeping the top 50 principal components, the data scientist retains the maximum possible variance in the reduced 50-dimensional space, directly addressing the goal of preserving variance while handling high multicollinearity.

What should I do if I get this MLS-C01 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more ways this is tested on MLS-C01

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A data scientist is exploring a dataset of customer transactions. The dataset has 1 million rows and 50 columns. The target variable is a binary flag indicating whether a customer churned. The data scientist runs a correlation matrix on all numerical features and finds that two features have a correlation coefficient of 0.98. Which action should be taken to improve model performance?

medium
  • A.Create an interaction term between the two features.
  • B.Remove one of the two highly correlated features from the dataset.
  • C.Increase the regularization parameter (e.g., lambda) in the model.
  • D.Apply mean-centering to both features to reduce correlation.

Why B: Two features with a correlation coefficient of 0.98 are nearly perfectly multicollinear. This inflates the variance of coefficient estimates in linear models, making them unstable and reducing interpretability. Removing one of the highly correlated features is a standard dimensionality reduction technique that mitigates multicollinearity without significant information loss, as the remaining feature captures almost the same variance.

Keep practising

More MLS-C01 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This MLS-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the MLS-C01 exam.