Skip to content
tezvyn:

Top 30 AI & ML Concepts Quiz

30 multiple-choice questions on the AI & ML fundamentals, drawn from 30 bites in the AI & ML library. Answer them here or read straight down. Every question carries the correct option, why it is correct, and a link to the bite it came from.

Artificial intelligence, machine learning, and data science

30 questions. Pick an answer, or open “Show the answer” to read it.

Answers are graded in your browser. Nothing is saved, and no XP or streak is earned here. The app keeps score.

  1. Question 1 of 30

    Which situation best illustrates why a loss function should not be the only measure of a model's real-world effectiveness?

    Show the answer

    Answer: a · The model achieves a low loss score, but its predictions are biased or provide no practical value to users.

    The card explicitly states that a low loss score doesn't guarantee real-world usefulness, as outputs can still be nonsensical, biased, or unhelpful. This highlights that loss functions are for optimization, not the final arbiter of a model's real-world usefulness. Option C describes a scenario where a loss function isn't typically used, rather than a limitation of relying on it as a sole metric when it is applied.

    Read the full bite: Loss Function: Quantifying 'How Wrong' a Model Is

  2. Question 2 of 30

    What is the primary distinction that makes MLOps necessary beyond traditional DevOps for machine learning systems?

    Show the answer

    Answer: a · Continuously monitoring model performance and orchestrating retraining on new data.

    MLOps uniquely addresses the lifecycle of machine learning models and their underlying data, including continuous monitoring for performance decay and automated retraining. Traditional DevOps focuses primarily on the code lifecycle, which is insufficient for the dynamic nature of ML models.

    Read the full bite: MLOps vs. DevOps: More Than Just "DevOps for ML"

  3. Question 3 of 30

    What is the main drawback of representing a digital image as a fixed grid of pixels?

    Show the answer

    Answer: b · It causes the image to appear blurry or pixelated when scaled up significantly.

    The card states that the 'primary weakness is scaling' for raster images, as making them larger requires inventing new pixels, leading to blurriness or pixelation. Option D describes vector graphics, which is a common misconception about how raster images work.

    Read the full bite: Digital Images as Grids of Pixels

  4. Question 4 of 30

    When is conducting a stakeholder analysis most crucial for a project's success?

    Show the answer

    Answer: b · When the project involves diverse groups with potential conflicting interests or varying power.

    The card emphasizes that stakeholder analysis is crucial for navigating the 'human landscape' and balancing 'competing demands' from parties with varying interest and influence. While identifying risks (option A) is an important project management activity, stakeholder analysis specifically focuses on understanding and managing the human element and their impact on the project.

    Read the full bite: Stakeholder Analysis: Mapping Influence and Interest

  5. Question 5 of 30

    What fundamental capability do activation functions primarily provide to neural networks?

    Show the answer

    Answer: c · They introduce non-linear transformations, allowing the network to model complex, non-linear relationships.

    The card emphasizes that activation functions introduce non-linearity, which is crucial for neural networks to learn complex patterns beyond simple linear relationships. Without non-linearity, a multi-layered network would collapse into a single linear model. Other options describe secondary effects or unrelated concepts.

    Read the full bite: Activation Functions: Making Neural Networks Nonlinear

  6. Question 6 of 30

    Which pitfall is explicitly warned against when applying the 5 Whys technique?

    Show the answer

    Answer: c · Attributing the problem's origin to individual human error rather than systemic flaws

    The card explicitly states, 'The footgun is blaming people instead of asking why the process allowed the error,' emphasizing that the technique should focus on systemic process failures, not individual fault. While stopping at exactly five 'Whys' can be a misuse, the primary 'footgun' highlighted is the misdirection of blame.

    Read the full bite: 5 Whys: Find the Root Cause, Not the Symptom

  7. Question 7 of 30

    What is the primary reason the pinhole camera model should not be directly applied to raw images from real cameras?

    Show the answer

    Answer: d · It does not model the non-linear distortions introduced by real camera lenses.

    The card explicitly states that real cameras introduce non-linear distortions (e.g., barrel or fisheye effects) that violate the straight-line assumption of the pinhole model. While other issues might exist, lens distortion is the primary limitation mentioned for direct application.

    Read the full bite: Pinhole Camera Model: Projecting 3D to 2D

  8. Question 8 of 30

    In the RGB color model, what color is produced when red, green, and blue light are combined at their maximum intensity?

    Show the answer

    Answer: a · White

    The RGB model is additive, meaning it starts with black and adds light. The card explicitly states that when all three primary lights (red, green, blue) overlap at full intensity, the result is white. Black is the result of mixing all primary pigments in a subtractive model, which is a common misconception the card addresses.

    Read the full bite: RGB Color Model: Mixing Light, Not Paint

  9. Question 9 of 30

    Which statement best describes the fundamental way regularization helps a model avoid overfitting?

    Show the answer

    Answer: b · It encourages the model to learn smaller, less extreme parameter values.

    Regularization adds a penalty to the loss function for large parameter values, which encourages the model to learn simpler, less extreme weights, thus preventing it from memorizing noise. Option A describes a beneficial outcome of regularization, but not its direct mechanism; it doesn't explicitly "ignore" data points but rather reduces their influence by constraining parameter magnitudes.

    Read the full bite: Regularization: Penalizing Complexity to Prevent Overfitting

  10. Question 10 of 30

    When would applying the MECE principle be least appropriate for an analysis?

    Show the answer

    Answer: b · Analyzing a blog's content by assigning multiple relevant tags to each post.

    The MECE principle is inappropriate when categories naturally overlap and that overlap is meaningful, such as when tagging blog posts with multiple relevant topics. Forcing MECE in such a case would lose valuable context. The other options describe scenarios where MECE is a highly effective tool for clear, unambiguous analysis.

    Read the full bite: The MECE Principle: No Overlaps, No Gaps

  11. Question 11 of 30

    Which of the following best describes a fundamental limitation of an image histogram?

    Show the answer

    Answer: d · It fails to provide any information about the spatial arrangement of pixels in an image.

    An image histogram has zero spatial awareness; it summarizes pixel counts by brightness but does not indicate where those pixels are located in the image. Therefore, it cannot judge composition. The other options describe capabilities that histograms possess or misrepresent their core function.

    Read the full bite: Image Histograms: Visualizing an Image's Tonal DNA

  12. Question 12 of 30

    Which of the following best describes the core function of an ML experiment tracking system?

    Show the answer

    Answer: c · To systematically log experiment parameters, metrics, and artifacts for reproducibility and comparison.

    The card describes experiment tracking as a "digital lab notebook" that logs "parameters, metrics, artifacts, and environment" to enable "reproducibility" and "comparison" of experiments. While related to other ML lifecycle stages, its core function is not deployment, production monitoring, or data versioning, but rather systematic logging for experimental insights.

    Read the full bite: ML Experiment Tracking: Your Model's Lab Notebook

  13. Question 13 of 30

    For which situation is a hypothesis-driven analysis LEAST appropriate?

    Show the answer

    Answer: c · Uncovering novel insights and potential trends within a newly acquired dataset.

    Hypothesis-driven analysis is designed for testing specific, falsifiable statements. Uncovering novel insights from a new dataset is an open-ended discovery task, which is better suited for exploratory data analysis rather than hypothesis testing.

    Read the full bite: Hypothesis-Driven Analysis: Ask First, Analyze Second

  14. Question 14 of 30

    What is the fundamental principle behind how Word2Vec represents word meaning?

    Show the answer

    Answer: c · Words with similar meanings are mapped to points that are spatially close in a multi-dimensional vector space.

    The core idea of Word2Vec is that words with similar meanings are represented by vectors that are close to each other in a multi-dimensional space, capturing semantic similarity through spatial proximity. Option A describes a method Word2Vec aims to improve upon, as it fails to capture semantic relationships.

    Read the full bite: Word2Vec: Word Meaning as a Point in Space

  15. Question 15 of 30

    Which camera property is NOT directly determined by camera resectioning?

    Show the answer

    Answer: a · The camera's internal lens distortion parameters.

    Camera resectioning determines the camera's external pose (position and orientation) based on known 3D-to-2D point correspondences. It assumes internal properties like lens distortion are either known or handled by a separate calibration, making them not directly determined by resectioning. The 2D pixel locations of known 3D points are inputs to the process, not outputs.

    Read the full bite: Camera Resectioning: Finding a Camera's Pose in 3D Space

  16. Question 16 of 30

    To efficiently manage large datasets and avoid duplicating storage across versions, data versioning systems primarily utilize which technique?

    Show the answer

    Answer: c · Storing each unique data file once and using lightweight pointers to represent different dataset versions.

    Data versioning systems achieve efficiency by storing only one copy of each unique data file and using lightweight pointers to reference these files across different dataset versions, avoiding full duplication. Option B describes the inefficient approach that data versioning aims to solve.

    Read the full bite: Data Versioning: Git for Your Datasets

  17. Question 17 of 30

    What is the primary strategic advantage of implementing a North Star Metric for a product organization?

    Show the answer

    Answer: b · It ensures all teams are aligned on delivering core customer value, guiding major product investments and decisions.

    The card states that an NSM aligns cross-functional teams on a common goal and shared definition of success, guiding major decisions and product investments. Options A and B describe misuses or explicit non-functions of an NSM, while option C overstates the immediate and guaranteed outcomes.

    Read the full bite: North Star Metric: Aligning Your Team With One Metric

  18. Question 18 of 30

    What is the most significant consequence of the vanishing gradient problem in deep neural networks?

    Show the answer

    Answer: b · Early layers of the network fail to learn effective features from the input data.

    The card states that vanishing gradients cause 'the gradients for the earliest layers become so small they effectively vanish, and those layers stop learning,' meaning they cannot learn effective features. Option D is incorrect because vanishing gradients lead to a failure to learn, not typically overfitting. Options C and D are general problems but not the specific, direct consequence on the learning of early layers.

    Read the full bite: The Vanishing Gradient Problem

  19. Question 19 of 30

    For which application is correcting lens distortion most essential?

    Show the answer

    Answer: a · Reconstructing a 3D environment from a series of images

    Correcting lens distortion is mandatory for applications like 3D reconstruction (photogrammetry) that rely on precise geometric measurements from images. While object classification might use images, it often doesn't require the same geometric precision, and aesthetic quality can sometimes even be enhanced by distortion.

    Read the full bite: Lens Distortion: Why Straight Lines Curve in Photos

  20. Question 20 of 30

    Why is it essential to track both leading and lagging indicators in an organizational strategy?

    Show the answer

    Answer: c · To manage day-to-day activities with leading indicators and evaluate overall success with lagging indicators.

    The card explains that leading indicators are for "operational management and proactive course-correction" (managing activities), while lagging indicators are for "strategic evaluation and reporting" and to "validate if those activities produced the desired result" (evaluating overall success). Option A is incorrect because the card explicitly warns against relying solely on leading indicators without validating them against lagging ones.

    Read the full bite: Leading vs. Lagging Indicators: Predict the Future or Report the Past?

  21. Question 21 of 30

    For which scenario would an LSTM be preferred over a traditional RNN?

    Show the answer

    Answer: c · Tasks requiring memory of context from distant points in a long sequence.

    LSTMs are specifically designed to overcome the vanishing gradient problem in traditional RNNs, enabling them to maintain and utilize information from far back in a sequence. For short-term dependencies, a simpler RNN might be more efficient, and for large-scale parallel tasks, Transformers are often preferred.

    Read the full bite: LSTMs: Giving Neural Networks a Longer Memory

  22. Question 22 of 30

    Which situation best demonstrates the appropriate application of an issue tree?

    Show the answer

    Answer: a · Investigating the root causes behind a sudden, unexplained drop in customer retention.

    Issue trees are designed for complex, unstructured diagnostic problems where the cause is unknown, such as an unexplained drop in a business metric. They are used for hypothesis generation, not for simple problems with clear causes or for managing the execution of known plans, nor for merely prioritizing symptoms without deconstructing the underlying problem.

    Read the full bite: Issue Trees: Deconstruct Problems, Not Symptoms

  23. Question 23 of 30

    What is the primary distinguishing characteristic of CD4ML compared to traditional CI/CD pipelines?

    Show the answer

    Answer: a · It explicitly manages and automates changes across code, data, and trained models.

    CD4ML's core innovation is extending CI/CD to manage the unique lifecycle of ML systems, which includes versioning and automating changes for code, data, and the trained model. While it does automate deployment (Option C), this is also a feature of traditional CI/CD; the distinction lies in the comprehensive management of data and models as first-class artifacts.

    Read the full bite: CD4ML: Automating ML from Data to Deployment

  24. Question 24 of 30

    For which reason are HSL and HSV models generally unsuitable for image analysis and computer vision tasks?

    Show the answer

    Answer: b · They lack perceptual uniformity, making color difference measurements unreliable.

    The card states that HSL and HSV are not perceptually uniform, meaning visual changes do not correspond consistently to numerical changes, which makes calculating color distance unreliable for algorithms. Other options are either incorrect or not the primary reason cited.

    Read the full bite: HSL and HSV: Intuitive Ways to Represent RGB Color

  25. Question 25 of 30

    What is the primary limitation of a basic Seq2Seq model when dealing with very long input sequences?

    Show the answer

    Answer: a · The fixed-size context vector acts as an information bottleneck, leading to the forgetting of early input details.

    The card states that the "primary weakness of basic Seq2Seq is its reliance on a single, fixed-size context vector" which "becomes an information bottleneck" for "very long inputs," causing the model to "forget details from the beginning of the input." Option D describes the problem that Seq2Seq was designed to solve, not its limitation.

    Read the full bite: Seq2Seq: Turning One Sequence Into Another

  26. Question 26 of 30

    Which core concept allows causal inference to distinguish cause-and-effect from mere association?

    Show the answer

    Answer: c · The estimation of a counterfactual outcome

    The card explicitly states that causal inference's mental model is to create a 'counterfactual'—what would have happened if the cause had not been introduced—to determine the causal effect. While identifying confounders and using RCTs are crucial methods in causal inference, the counterfactual is the underlying conceptual tool for distinguishing causation from association. Analyzing correlations is what causal inference aims to move beyond.

    Read the full bite: Causal Inference: Proving Cause, Not Just Correlation

  27. Question 27 of 30

    Which scenario most strongly indicates the necessity of implementing a Continuous Training (CT) pipeline for an ML model?

    Show the answer

    Answer: c · The model's performance metrics are steadily degrading in production due to shifts in the input data distribution.

    Continuous Training (CT) is specifically designed to address model performance decay caused by 'data drift' or non-stationary data patterns in production. Option C directly describes this core problem. Option D refers to traditional CI/CD for code or infrastructure, not CT for model retraining due to data changes.

    Read the full bite: Continuous Training: CI/CD for ML Models

  28. Question 28 of 30

    In an RGB system, what does "True color" (24-bit color depth) signify regarding bits per channel (bpc)?

    Show the answer

    Answer: d · Each of the Red, Green, and Blue channels uses 8 bits.

    True color (24-bit color depth) means 24 bits per pixel (bpp). In an RGB system, these 24 bits are typically divided equally among the three channels (Red, Green, Blue), meaning 8 bits per channel (8 bpc). Option C is incorrect because 24 bits per channel would result in 72 bpp, not 24 bpp.

    Read the full bite: Color Depth: Bits Per Pixel vs. Bits Per Channel

  29. Question 29 of 30

    What is the primary advantage of using uplift modeling over a traditional conversion prediction model?

    Show the answer

    Answer: b · It enables targeting of individuals whose conversion probability is significantly increased by a specific intervention.

    Uplift modeling's core purpose is to identify 'Persuadables'—those whose behavior will change due to an intervention, maximizing the incremental impact of costly resources. Option C is incorrect because uplift's advantage is not just general prediction accuracy, but specifically predicting causal impact.

    Read the full bite: Uplift Modeling: Who to Target, Not Just Who Will Convert

  30. Question 30 of 30

    A spam filter trained on 2020 email data struggles in 2023 because spammers now use keywords previously common in legitimate emails. What type of drift is this?

    Show the answer

    Answer: b · Concept Drift, because the relationship between keywords and whether an email is spam has fundamentally altered.

    This is Concept Drift because the fundamental relationship between the input features (keywords) and the target variable (spam) has changed; what once indicated legitimate email now indicates spam. While the distribution of keywords has shifted (Data Drift), the core issue is the altered meaning of those keywords in predicting spam, which is characteristic of Concept Drift.

    Read the full bite: Data Drift vs. Concept Drift: When Models Go Stale

Could you explain these out loud?

That is what an interview actually tests. Tezvyn gives you questions like these with what the interviewer is really checking, the answer that lands, and the mistake that ends the conversation, in the four minutes before your next meeting.

The iPhone app is on the way

We are building it. Until it lands, nothing here is held back from you: every interview card, your saved cards, streaks and the job board all work in Safari, plus hundreds of free practice quizzes of thirty questions each. Sign in and it all carries over to the app the day it arrives.

Want it as an icon? Tap Share at the bottom of Safari, then Add to Home Screen. It opens full screen and the cards you have read stay available offline.

Get it on Google PlayiPhone app coming soon