MLA-C01(日语) Practice Exam — MLA-C01:Machine Learning Engineer - Associate

1. The question bank is cloud-based and updates automatically, with no need for re-acquisition.

2. Available in Chinese and English. It supports online practice, mock exams and PDF downloads.

3. You can practice questions via mini-program or desktop web page. The service is valid for one year.

4. For inquiries, please contact customer service via WeChat, WhatsApp or Line.

Sample questions

MLA-C01(日语) · Q1
Topic 1 Question #1 Case Study -A company is building a web-based AI application by using Amazon SageMaker. The application will provide the following capabilities and features: ML experimentation, training, a central model registry, model deployment, and model monitoring.The application must ensure secure and isolated use of training data during the ML lifecycle. The training data is stored in Amazon S3.The company needs to use the central model registry to manage different versions of models in the application.Which action will meet this requirement with the LEAST operational overhead?
  • A.
    Create a separate Amazon Elastic Container Registry (Amazon ECR) repository for each model.
  • B.
    Use Amazon Elastic Container Registry (Amazon ECR) and unique tags for each model version.
  • C.
    Use the SageMaker Model Registry and model groups to catalog the models.
  • D.
    Use the SageMaker Model Registry and unique tags for each model version.

Answer: C

The scenario specifies a SageMaker-based ML workflow requiring a central model registry for version management, secure isolation of training data across the ML lifecycle, and minimal operational overhead. The suggested answer leverages native, fully managed SageMaker functionality purpose-built for this exact use case, eliminating the need for custom tooling or manual infrastructure management. SageMaker Model Registry natively integrates with all other SageMaker features including training jobs, IAM access controls for S3 training data, model deployment, and model monitoring, while model groups provide out-of-the-box version cataloging for related models, aligning perfectly with all requirements with the lowest possible operational effort. Option Analysis: A. Incorrect. Amazon ECR is a container image registry, not a purpose-built ML model registry, and does not natively store model metadata, training lineage, or support ML-specific approval workflows. Creating separate ECR repositories per model requires manual management of permissions, version tracking, and custom integration with SageMaker workflows, introducing significant unnecessary operational overhead and failing to deliver a native central model registry for the ML lifecycle. B. Incorrect. Using ECR with unique tags for model versions still relies on a container registry rather than a purpose-built ML model registry. This approach requires custom scripting to track model metadata, lineage, and integrate with SageMaker deployment and monitoring features, leading to far higher operational overhead than native SageMaker Model Registry functionality. ECR is not designed to serve as a central ML model registry, so this option does not meet the core requirement. C. Correct. SageMaker Model Registry is the fully managed, native central model registry for SageMaker ML workflows, designed explicitly to support end-to-end ML lifecycle management. Model groups within SageMaker Model Registry are purpose-built to catalog and organize all versions of a single model, automatically track version numbering, training data lineage, approval status, and integrate natively with SageMaker IAM controls to enforce secure, isolated access to S3 training data. This solution requires no custom infrastructure or manual management, delivering the lowest operational overhead while meeting all stated requirements. D. Incorrect. While SageMaker Model Registry is the correct service for this use case, using unique tags to manage model versions is inefficient and introduces unnecessary operational overhead. Model groups are a native built-in feature that automatically manages versioning, organization, and lineage for related model versions, eliminating the need for manual tag management, risk of tag collisions, and custom processes to track version order. This option is less efficient than option C. Key Concepts: 1. SageMaker Model Registry: A fully managed AWS service purpose-built for cataloging ML models, managing model versions, tracking lineage and metadata, and implementing deployment approval workflows, with native integration across the entire SageMaker ML lifecycle. 2. SageMaker Model Groups: A core construct within SageMaker Model Registry that groups all versions of a single use case model, automates version numbering, and simplifies organization of related model artifacts, metadata, and deployment history without custom configuration. 3. ML Operational Efficiency: A core MLA-C01 domain concept that prioritizes use of native integrated AWS ML services over custom disjointed tools to reduce operational overhead, improve security, and simplify end-to-end ML lifecycle management. References: Amazon SageMaker Model Registry, https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry.html Organize Model Versions with Model Groups, https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-model-group.html
MLA-C01(日语) · Q2
Topic 1 Question #2 Case Study -A company is building a web-based AI application by using Amazon SageMaker. The application will provide the following capabilities and features: ML experimentation, training, a central model registry, model deployment, and model monitoring.The application must ensure secure and isolated use of training data during the ML lifecycle. The training data is stored in Amazon S3.The company is experimenting with consecutive training jobs.How can the company MINIMIZE infrastructure startup times for these jobs?
  • A.
    Use Managed Spot Training.
  • B.
    Use SageMaker managed warm pools.
  • C.
    Use SageMaker Training Compiler.
  • D.
    Use the SageMaker distributed data parallelism (SMDDP) library.

Answer: B

The question requires minimizing infrastructure startup times for consecutive SageMaker training jobs, while maintaining secure isolated use of training data. By default, each SageMaker training job provisions new compute instances, pulls the training container image, and initializes the runtime environment, a process that typically takes several minutes per job. For consecutive experimental training runs, this startup latency adds significant overhead. SageMaker managed warm pools address this directly by retaining the compute instances, container runtime, and associated environment configuration after a training job completes. Subsequent consecutive jobs can reuse these pre-provisioned, isolated resources instead of spinning up new infrastructure, reducing startup time from minutes to seconds. Warm pools are dedicated to the customer AWS account, so they maintain the required security and isolation for training data access to S3, aligning with all requirements in the scenario. This topic falls under the MLA-C01 domain of optimizing ML workloads on AWS, specifically performance optimization for SageMaker training. Option Analysis: A. Managed Spot Training is incorrect. This feature is designed to reduce training costs by leveraging unused EC2 capacity at discounted rates, not to reduce infrastructure startup time. Spot instances may have longer provisioning wait times if capacity is constrained, and can be interrupted, making them unsuitable for minimizing startup latency for consecutive jobs. B. SageMaker managed warm pools is correct. This feature retains pre-provisioned, isolated compute resources and runtime environments between consecutive training jobs, eliminating the overhead of resource provisioning, container pull, and environment initialization for subsequent runs. This directly minimizes infrastructure startup time as required, and maintains the required security isolation as warm pool resources are not shared with other AWS customers. C. SageMaker Training Compiler is incorrect. This tool optimizes training code execution to reduce the runtime of the training process itself, but has no impact on the infrastructure startup time that occurs before the training code begins running. It addresses a different phase of the training lifecycle than the requirement specified. D. SageMaker distributed data parallelism (SMDDP) library is incorrect. This library optimizes data transfer across multiple compute nodes for distributed training workloads, reducing training execution time for large, multi-node jobs. It does not affect the infrastructure startup time for individual consecutive training jobs, so it does not meet the requirement. Key Concepts: 1. SageMaker Warm Pools for Training: A core performance optimization feature for iterative and consecutive training workloads that retains provisioned compute resources between jobs to eliminate startup latency, a key topic in the MLA-C01 domain of ML workload optimization. 2. SageMaker Training Job Lifecycle: MLA-C01 candidates are tested on their knowledge of the distinct phases of a SageMaker training job (resource provisioning, initialization, execution, teardown) to identify targeted optimizations for specific workload pain points. 3. SageMaker Training Optimization Differentiation: Candidates must be able to distinguish between optimizations for cost (e.g., Managed Spot Training), training execution speed (e.g., Training Compiler, SMDDP), and infrastructure startup latency (e.g., Warm Pools) to select the right tool for a given use case. References: Use Warm Pools for Training, https://docs.aws.amazon.com/sagemaker/latest/dg/train-warm-pools.html AWS Certified Machine Learning – Associate (MLA-C01) Exam Guide
MLA-C01(日语) · Q3
Topic 1 Question #3 Case Study -A company is building a web-based AI application by using Amazon SageMaker. The application will provide the following capabilities and features: ML experimentation, training, a central model registry, model deployment, and model monitoring.The application must ensure secure and isolated use of training data during the ML lifecycle. The training data is stored in Amazon S3.The company must implement a manual approval-based workflow to ensure that only approved models can be deployed to production endpoints.Which solution will meet this requirement?
  • A.
    Use SageMaker Experiments to facilitate the approval process during model registration.
  • B.
    Use SageMaker ML Lineage Tracking on the central model registry. Create tracking entities for the approval process.
  • C.
    Use SageMaker Model Monitor to evaluate the performance of the model and to manage the approval.
  • D.
    Use SageMaker Pipelines. When a model version is registered, use the AWS SDK to change the approval status to "Approved."

Answer: D

This question aligns with the MLOps and ML Governance domains of the AWS Certified Machine Learning Engineer - Associate (MLA-C01) exam, which test knowledge of orchestrating governed, repeatable ML workflows and enforcing pre-deployment control policies. The scenario requires two core capabilities: an end-to-end ML lifecycle solution covering experimentation, training, model registry, deployment and monitoring, plus a manual approval gate to block unvetted models from production deployment. SageMaker Pipelines is the purpose-built, fully managed CI/CD orchestration service for SageMaker ML workflows, and it natively integrates with the SageMaker Model Registry. The Model Registry includes built-in approval status fields for all model versions: PendingManualApproval, Approved, and Rejected. When a model is registered as part of a pipeline run, teams can configure the pipeline to pause for manual review, then use the AWS SDK to update the model version's status to Approved once review is complete. Deployment steps in the pipeline can be restricted to only run for Approved model versions, directly meeting the manual approval requirement. SageMaker Pipelines also supports the remaining required features in the scenario, including integration with SageMaker Experiments for experimentation tracking, isolated training job configuration for secure S3 data access, and integration with SageMaker Model Monitor for post-deployment monitoring. Option Analysis: A. Incorrect. SageMaker Experiments is a service for tracking, organizing, and comparing ML experiment runs, including metrics, hyperparameters, and run artifacts. It does not include native functionality to implement or facilitate manual approval workflows for model registration, so it cannot meet the core governance requirement in the scenario. B. Incorrect. SageMaker ML Lineage Tracking is used to track the origin and relationships of ML artifacts, including training data sources, training jobs, model versions, and deployed endpoints, for audit and compliance purposes. It does not provide approval workflow controls or status management for model registry entries, so it cannot support the required manual approval process. C. Incorrect. SageMaker Model Monitor is a post-deployment service used to detect data drift, concept drift, model quality degradation, and bias in production endpoints. It operates only after a model is deployed, so it cannot manage pre-deployment manual approval workflows for new model versions. D. Correct. SageMaker Pipelines orchestrates the entire ML lifecycle covered in the scenario, and natively integrates with the SageMaker Model Registry. Teams can configure new model versions to be registered with a PendingManualApproval status by default. After manual review is complete, the AWS SDK for SageMaker can be used to update the model version's status to Approved. Deployment steps in the pipeline can be configured to only execute for Approved model versions, ensuring no unvetted models are deployed to production. This solution meets all requirements in the scenario. Key Concepts: 1. SageMaker Model Registry Approval Controls: The SageMaker Model Registry includes built-in approval status tracking for all registered model versions, enabling teams to implement formal manual review processes before production deployment. Deployment workflows can be restricted to only use Approved model versions to enforce governance policies. 2. SageMaker Pipelines Orchestration: SageMaker Pipelines is a fully managed CI/CD service for ML workflows that integrates natively with all SageMaker ML lifecycle services, including Experiments, Training, Model Registry, and Model Monitor, to create governed, repeatable end-to-end workflows. 3. ML Workflow Governance: MLOps governance requires pre-deployment control gates such as manual approval to ensure only validated, compliant models are deployed to production, paired with access controls for sensitive training data to meet security requirements. References: Use the SageMaker Model Registry, https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry.html Build and Manage SageMaker Pipelines, https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-build.html
MLA-C01(日语) · Q4
Topic 1 Question #4 Case Study -A company is building a web-based AI application by using Amazon SageMaker. The application will provide the following capabilities and features: ML experimentation, training, a central model registry, model deployment, and model monitoring.The application must ensure secure and isolated use of training data during the ML lifecycle. The training data is stored in Amazon S3.The company needs to run an on-demand workflow to monitor bias drift for models that are deployed to real-time endpoints from the application.Which action will meet this requirement?
  • A.
    Configure the application to invoke an AWS Lambda function that runs a SageMaker Clarify job.
  • B.
    Invoke an AWS Lambda function to pull the sagemaker-model-monitor-analyzer built-in SageMaker image.
  • C.
    Use AWS Glue Data Quality to monitor bias.
  • D.
    Use SageMaker notebooks to compare the bias.

Answer: A

The scenario requires an on-demand, automated workflow to monitor bias drift for SageMaker real-time deployed models, while maintaining secure, isolated access to training data stored in S3, and aligning with the existing SageMaker ML lifecycle stack used by the company. The core requirement specifically targets bias drift detection, a use case that is natively supported by purpose-built SageMaker tools. The correct solution leverages a serverless trigger to run the dedicated SageMaker bias detection tool, which integrates seamlessly with deployed endpoints, S3 data stores, and existing SageMaker governance tools including the model registry, meeting both the functional and security requirements. Option Analysis: A. Correct. SageMaker Clarify is the purpose-built AWS service for ML bias and fairness detection, including native support for bias drift monitoring on deployed real-time endpoints. AWS Lambda is a serverless, event-driven service that can be invoked directly on demand from the company's web application to trigger a SageMaker Clarify job. Clarify jobs can be configured to run in isolated VPCs, access S3 training data securely without public exposure, and integrate with existing SageMaker model registry and monitoring features, fully addressing all requirements in the scenario. B. Incorrect. The sagemaker-model-monitor-analyzer built-in SageMaker image is designed for generic data quality and model quality monitoring, not bias drift detection. Bias drift monitoring requires dedicated SageMaker Clarify containers, so this option uses the wrong tool for the specified use case and will not meet the bias monitoring requirement. C. Incorrect. AWS Glue Data Quality is a service designed to monitor the quality of static datasets stored in data lakes, warehouses, and databases. It has no native integration with deployed SageMaker model endpoints or built-in functionality to detect bias drift in model predictions, so it does not address the core requirement. D. Incorrect. SageMaker notebooks are interactive development environments intended for manual experimentation and analysis, not automated on-demand workflows. A notebook-based bias comparison process is not scalable, requires manual intervention, and does not meet the requirement for an application-triggered on-demand workflow. Key Concepts: 1. SageMaker Clarify Capabilities: SageMaker Clarify is AWS's purpose-built tool for ML fairness, bias detection, and model explainability. It supports pre-training bias checks on training datasets, post-training bias checks on model outputs, and ongoing bias drift monitoring for deployed real-time and batch endpoints, making it the only native AWS tool for the bias drift use case in this question. 2. SageMaker Model Monitoring Categories: SageMaker model monitoring includes four distinct, purpose-built categories: data quality monitoring, model quality monitoring, model bias monitoring, and model explainability monitoring. Each category uses dedicated containers and tools, so selecting the correct monitoring type for the use case is critical to meet requirements. 3. Serverless SageMaker Workflow Triggers: AWS Lambda is the standard serverless solution for programmatically triggering SageMaker jobs (including Clarify, processing, training, and transform jobs) on demand, allowing seamless integration with external applications without managing underlying compute infrastructure. References: Monitor Bias Drift for Models in Production, https://docs.aws.amazon.com/sagemaker/latest/dg/clarify-model-monitor-bias-drift.html Use AWS Lambda with Amazon SageMaker, https://docs.aws.amazon.com/sagemaker/latest/dg/use-cases-lambda.html
MLA-C01(日语) · Q5
Topic 1 Question #5 HOTSPOT - A company stores historical data in .csv files in Amazon S3. Only some of the rows and columns in the .csv files are populated. The columns are not labeled. An ML engineer needs to prepare and store the data so that the company can use the data to train ML models. Select and order the correct steps from the following list to perform this task. Each step should be selected one time or not at all. (Select and order three.) • Create an Amazon SageMaker batch transform job for data cleaning and feature engineering. • Store the resulting data back in Amazon S3. • Use Amazon Athena to infer the schemas and available columns. • Use AWS Glue crawlers to infer the schemas and available columns. • Use AWS Glue DataBrew for data cleaning and feature engineering. " target="_blank" rel="nofollow noopener">https://img.examtopics.com/aws-certified-machine-learning-engineer-associate-mla-c01/image1.png">
  • A.
    错误
  • B.
    正确

Answer: B

" target="_blank" rel="nofollow noopener">https://img.examtopics.com/aws-certified-machine-learning-engineer-associate-mla-c01/image2.png">

FAQ

How many practice questions are available for MLA-C01(日语)?

This question bank includes 257 MLA-C01(日语) practice questions covering single and multiple choice, each with answers and explanations.

Are MLA-C01(日语) practice questions available in Chinese and English?

Yes, MLA-C01(日语) practice questions are provided in both Chinese and English.

Can I try MLA-C01(日语) practice questions for free?

Yes. Free sample questions are available on this page, and the full question bank is available after signing up on Zhangxuetu.