HOW TO // AI — CERT · AWS MLA-C02

Pass the New AWS ML Engineer Associate (MLA-C02)

400 original practice questions weighted to the official MLA-C02 blueprint — including the RAG, agent and guardrail material MLA-C01 never covered — with a plain-English explanation on every single one.

Start the free quiz — no signup →

5 questions free right now · 15 more with your email · full bank from $12/mo

$200K–$300K+experienced AI/ML engineer pay in 2026 — where AWS AI skills lead
400original questions — no brain dumps, ever
5 FREEquestions below — no account, no credit card
🤖

Claude AI Tutor included with Pro — miss a question and it explains exactly why, in plain English, until it clicks.

Practice questions are the fastest way to get ready for the updated AWS ML Engineer Associate exam (MLA-C02): they show how concepts are tested, surface your gaps, and make exam day feel familiar. Every question below comes with an explanation of why the answer is right. Sitting the outgoing version instead? Use the MLA-C01 practice questions.

Three iPhone screens from the HOW TO AI CERT app: the readiness dashboard, the Claude-powered AI tutor explaining an answer, and a 50-question timed mock exam.

Study this exam on your phone

HOW TO AI — CERT has 5,197 original practice questions across 15 AI and cloud certifications — including all four Anthropic Claude exams — plain-English explanations on every answer, full timed mock exams, weak-area drills, and an AI tutor powered by Claude. Free to download, with a free question set for every exam.

What’s on the AWS ML Engineer Associate (MLA-C02) exam

MLA-C02 is in beta at the time of writing, and the beta is not shaped like a normal sitting. These are the beta figures:

Booking codeME1-C02 — this is what you search for at Pearson VUE, not “MLA-C02”
Questions85 in the beta; 50 of them count toward your score
Time limit170 minutes (beta exams run longer than the standard version)
Price$75 USD beta pricing
Beta deliveryFrom September 29, 2026
LanguageEnglish only during the beta; more languages at general availability
AttemptsOne attempt at the beta version
ResultsTypically within 5 business days, not on screen
ScoringScaled 100–1,000; 720 to pass
Validity3 years
General availabilityAWS’s exam page lists GA registration and delivery as TBD; AWS’s certification blog dates general availability to January 14, 2027

Two things worth not guessing about: the standard version is described as 65 questions (50 scored plus 15 unscored), so do not assume the 170-minute beta length carries over, and the last day to take MLA-C01 in English is September 28, 2026.

Our question set is weighted to the blueprint AWS publishes for MLA-C02:

DomainWeightWhat it covers
Data Preparation for ML and AI28%Ingest, store, transform and validate data for ML and for generative AI. S3 storage, Glue and EMR/Spark transforms, Athena queries, streaming ingestion with Kinesis and Firehose, feature engineering with SageMaker Feature Store, labelling, and governance with Lake Formation — plus preparing and chunking source data for retrieval-augmented generation.
ML Model and Foundation Model (FM) Development24%Choose, train, tune and evaluate models. Built-in algorithms and JumpStart, SageMaker training jobs, Automatic Model Tuning, bias and explainability checks, and the usual metrics — now alongside foundation model work: choosing a model in Amazon Bedrock, prompt design and management, fine-tuning versus retrieval, and evaluating an LLM’s output.
Deployment and Orchestration of ML and AI Workflows24%Deploy models and automate pipelines. Real-time, serverless and asynchronous endpoints, Batch Transform, auto scaling, orchestration with SageMaker Pipelines, Step Functions and EventBridge, CI/CD, infrastructure as code — and building agentic workflows rather than only model endpoints.
Operating, Monitoring, and Securing ML and AI Solutions24%Keep it running, watch it, and lock it down. Drift and data quality monitoring, observability with CloudWatch and CloudTrail, cost and performance optimisation, and security through IAM, KMS, VPC, Secrets Manager and PrivateLink — extended to generative AI with guardrails and the observability of agent workflows.

Domain names and weightings are AWS’s own, from the MLA-C02 exam guide. The descriptions are ours.

Take the free practice quiz

Start with 5 free questions — read the explanation after each — then unlock 15 more with your email. No account needed to begin.

FREE PRACTICE QUIZ

Try 5 free MLA-C02 practice questions

Answer at your own pace. Every question shows the correct answer and a plain-English explanation — that's where the learning happens. Unlock 15 more questions free at the end.

Read the 5 free MLA-C02 questions as text, with answers and explanations
  1. A team trains SageMaker models on a 4 TB tabular dataset stored as gzip-compressed CSV in Amazon S3. Analysts also run frequent Amazon Athena queries that scan only 6 of the 80 columns. Which change to the storage format will MOST reduce both Athena scan cost and SageMaker data-loading time?

    • A. Convert the data to a single uncompressed JSON Lines file
    • B. Re-store the data as RecordIO-protobuf shards
    • C. Keep CSV but increase the gzip compression level
    • D. Convert the data to Apache Parquet with Snappy compression

    Answer: D. Parquet is a columnar format, so Athena reads only the 6 needed columns instead of scanning all 80, and Snappy-compressed Parquet is splittable for parallel reads. JSON Lines is row-oriented and verbose, increasing scan size. RecordIO-protobuf suits certain built-in algorithms but is not queryable by Athena and does not enable columnar pruning. Higher gzip levels do not enable column pruning, and a single gzip CSV is not splittable.

    Exam domain: Data Preparation for ML and AI

  2. Clickstream events arrive continuously and must be delivered to Amazon S3 as Parquet, partitioned by event date, with no application code to manage and built-in buffering and format conversion. The team wants the simplest fully managed pipeline. Which AWS service should they use?

    • A. Amazon Kinesis Data Streams with a custom consumer running on Amazon EC2
    • B. AWS Glue streaming job writing micro-batches to S3
    • C. Amazon Data Firehose with record format conversion to Parquet and dynamic partitioning
    • D. Amazon MSK with a self-managed Kafka Connect S3 sink

    Answer: C. Amazon Data Firehose (formerly Kinesis Data Firehose) is fully managed, buffers records, can convert JSON to Parquet, and supports dynamic partitioning to S3 with no servers to run. Kinesis Data Streams plus a custom EC2 consumer requires you to build and operate the delivery and conversion logic. MSK with Kafka Connect is self-managed and operationally heavier. A Glue streaming job is more code and infrastructure than needed for straightforward delivery to S3.

    Exam domain: Data Preparation for ML and AI

  3. A team wants a visual, low-code tool to profile a CSV dataset, identify missing values and outliers, and apply 250+ prebuilt cleaning and normalization transformations without writing Spark or pandas code. Which AWS service is designed for this?

    • A. AWS Lambda
    • B. Amazon EMR on EC2
    • C. Amazon Athena
    • D. AWS Glue DataBrew

    Answer: D. AWS Glue DataBrew is a visual data-preparation tool with hundreds of prebuilt transformations and built-in profiling for missing values and outliers, requiring no code. Athena queries data with SQL but does not provide a visual cleaning UI. EMR requires writing Spark code, and Lambda is general-purpose compute, not a data-prep tool.

    Exam domain: Data Preparation for ML and AI

  4. A high-cardinality categorical column 'product_id' has 50,000 distinct values and will feed a gradient-boosted tree model. One-hot encoding would create 50,000 sparse columns. Which encoding approach is the MOST appropriate to control dimensionality while preserving predictive signal?

    • A. Label encoding that assigns arbitrary sequential integers used directly as the feature
    • B. Dropping the column entirely because it is high cardinality
    • C. Target (mean) encoding computed only from the training split
    • D. One-hot encoding with all 50,000 categories retained

    Answer: C. Target encoding replaces each category with a statistic (such as the mean of the target) and keeps the feature one-dimensional, which works well for very high-cardinality columns; computing it only on the training split avoids leakage. One-hot at 50,000 levels explodes dimensionality. Arbitrary integer label encoding imposes a false ordinal relationship that misleads many models. Dropping the column discards potentially useful signal.

    Exam domain: Data Preparation for ML and AI

  5. A data scientist has a tabular dataset in Amazon S3 with a labeled target column and wants SageMaker to automatically explore feature preprocessing, candidate algorithms, and hyperparameters to produce a leaderboard of trained models with minimal code. Which SageMaker capability is the BEST fit?

    • A. Amazon SageMaker Debugger
    • B. Amazon SageMaker JumpStart foundation models
    • C. Amazon SageMaker Model Monitor
    • D. Amazon SageMaker Autopilot (AutoML)

    Answer: D. Autopilot (AutoML) automatically handles preprocessing, algorithm selection, and hyperparameter tuning on tabular data, producing a ranked leaderboard of candidate models. JumpStart provides pretrained foundation/proprietary models rather than AutoML over your tabular data. Debugger inspects training jobs for issues, and Model Monitor watches deployed endpoints for drift, neither of which builds candidate models.

    Exam domain: ML Model and Foundation Model Development

Want more? Finish the quiz above to unlock 15 more free questions, or open the full MLA-C02 practice app.

🤖 An AI Tutor on every question — powered by Claude

Stuck? Ask the AI Tutor — it explains the concept, shows why your pick was tempting but wrong, and answers follow-ups. Included with Pro.

🎓 Want the full question bank?

HOW TO // AI — CERT unlocks the complete MLA-C02 bank, timed mock exams, flashcards, spaced-repetition review, and the AI tutor — free to start, Pro from $12/month (one subscription covers every cert).

Free MLA-C02 study guide & cheat sheet

Prefer to study first? The free MLA-C02 study guide has the exam breakdown, a topic cheat sheet, and a full glossary — no sign-up. For what actually changed between the versions, read the MLA-C02 exam guide.

How to prepare

Read the official objectives in AWS’s MLA-C02 exam guide and check the dates on the AWS exam page, take a practice set above, then study the domains where you missed questions rather than re-reading everything. If you are coming from MLA-C01, spend your first week on Bedrock: knowledge bases, agents and guardrails are where the new questions are, and they are not something you can learn by reading.

HOW TO // AI is not affiliated with or endorsed by Amazon Web Services. AWS Certified Machine Learning Engineer – Associate, MLA-C01 and MLA-C02 are certifications of Amazon.com, Inc. or its affiliates; we reference them descriptively. All questions are original.

Practice for every AI & cloud cert

Scroll to Top