Amazon AWS Certified AI Practitioner AIF-C01 Practice Test Questions and Exam Dumps Part6 Q101-120

View Full Amazon AWS Certified AI Practitioner AIF-C01 Exam Dumps and Practice Test Dumps.

 

Question 101

Which machine learning technique groups similar data points together without requiring predefined categories?

  1. Clustering
  2. Regression
  3. Classification
  4. Reinforcement learning

Correct Answer: 1

Explanation

Clustering is an unsupervised machine learning technique that organizes data points into groups based on similarities or patterns within the data. The algorithm does not require predefined labels for those groups. For example, a business might use clustering to identify customer segments based on purchasing behavior without defining the segments beforehand. The resulting groups can help analysts discover patterns that were not explicitly known in advance. Clustering differs from classification because classification uses labeled examples to predict predefined categories. The usefulness of clustering depends heavily on the quality and characteristics of the input features.

Question 102

In machine learning, what is a feature?

  1. The final prediction produced by a model
  2. An input variable used by a model to make predictions
  3. A security policy attached to an IAM user
  4. A completed model evaluation report

Correct Answer: 2

Explanation

A feature is an input variable or measurable characteristic that a machine learning model can use when making predictions or identifying patterns. For example, a house-price model might use location, number of rooms, and property size as features. Good feature selection can help a model focus on information that is relevant to the prediction task. Features should be prepared appropriately and checked for issues such as missing values, leakage, or inconsistent formats. Features are different from labels, which represent the target outcome that a supervised learning model is typically trained to predict.

Question 103

A model performs extremely well on training data but significantly worse on unseen data. Which problem does this most likely indicate?

  1. Underfitting
  2. Data encryption
  3. Overfitting
  4. Tokenization

Correct Answer: 3

Explanation

Overfitting occurs when a machine learning model learns the training data too closely, including patterns or noise that do not generalize to new examples. As a result, the model can achieve excellent performance on training data while performing poorly on unseen data. Techniques such as regularization, early stopping, obtaining more representative training data, or simplifying the model can sometimes reduce overfitting. Evaluation using appropriately separated validation and test data is important for identifying this problem. The objective is not simply to maximize training performance but to achieve reliable performance on data the model has not previously encountered.

Question 104

Which statement best describes a model parameter?

  1. A value learned by the model during training
  2. A DNS record used by an application
  3. A prompt supplied by an end user
  4. A manually assigned network address

Correct Answer: 1

Explanation

Model parameters are internal values that a machine learning model learns from training data. They influence how the model transforms input information into predictions or outputs. In many neural networks, parameters include weights and biases that are adjusted during training to reduce the model’s error according to the selected optimization process. Model parameters differ from hyperparameters because hyperparameters are settings chosen by practitioners to control aspects of training. Understanding this distinction is useful when evaluating machine learning workflows because changing model parameters and changing hyperparameters involve different mechanisms.

Question 105

Which technique can stop training when validation performance stops improving in order to reduce unnecessary training and potential overfitting?

  1. Early stopping
  2. Data augmentation
  3. Tokenization
  4. One-hot encoding

Correct Answer: 1

Explanation

Early stopping is a training technique that monitors performance on validation data and stops the training process when improvement has stopped according to a defined criterion. This can prevent unnecessary training after a model has reached a useful level of generalization. It can also help reduce the risk of overfitting when continued training begins to improve training performance while validation performance deteriorates. Early stopping is usually implemented as part of the training workflow rather than after deployment. The specific stopping condition and patience period should be selected based on the behavior of the model and validation results.

Question 106

An organization wants to adapt a pretrained foundation model using a relatively small dataset containing examples specific to its business task. Which approach is most appropriate?

  1. Replacing the model with a database
  2. Fine-tuning the pretrained model
  3. Disabling model inference
  4. Removing the business-specific examples

Correct Answer: 2

Explanation

Fine-tuning adapts a pretrained model using additional task-specific data so that the model can better perform a particular use case. Starting from a pretrained model can reduce the amount of data and computational resources required compared with training a model entirely from scratch. The quality and suitability of the fine-tuning dataset remain important because poor or biased examples can affect the resulting model. Organizations should also evaluate whether fine-tuning is necessary, since prompting or retrieval-based approaches may be sufficient for some applications. The appropriate customization method depends on the desired behavior and available resources.

Question 107

Which type of machine learning learns through feedback associated with actions and rewards?

  1. Reinforcement learning
  2. Unsupervised learning
  3. Regression
  4. Dimensionality reduction

Correct Answer: 1

Explanation

Reinforcement learning involves an agent interacting with an environment and learning from feedback, commonly represented through rewards or penalties. The objective is to learn a strategy that maximizes expected cumulative reward over time. Unlike supervised learning, the system is not necessarily provided with a correct answer for every individual decision. Reinforcement learning can be useful for sequential decision-making problems where actions influence future states and outcomes. The approach requires careful definition of the environment, available actions, and reward structure because poorly designed rewards can encourage undesirable behavior.

Question 108

What is a primary purpose of regularization in machine learning?

  1. To increase the number of user accounts
  2. To reduce the risk of overfitting
  3. To translate model outputs
  4. To increase network bandwidth

Correct Answer: 2

Explanation

Regularization is a technique used to reduce overfitting by discouraging a model from becoming unnecessarily complex. Depending on the algorithm, regularization can add a penalty associated with model complexity to the training objective. Common approaches include L1 and L2 regularization. The goal is to encourage the model to learn patterns that generalize better to unseen data rather than memorizing the training examples. The amount of regularization is typically controlled by a hyperparameter. Excessive regularization can also reduce useful model capacity, so the strength should be selected through appropriate experimentation and validation.

Question 109

A machine learning engineer wants to transform categorical values such as “red,” “blue,” and “green” into numerical representations suitable for a model. Which preprocessing method can accomplish this?

  1. One-hot encoding
  2. Model pruning
  3. Early stopping
  4. Gradient clipping

Correct Answer: 1

Explanation

One-hot encoding converts categorical values into numerical indicator variables. For example, categories such as red, blue, and green can be represented using separate binary features, with the corresponding category represented by an active value. This allows algorithms that require numerical inputs to process categorical information. The appropriate encoding method depends on the model and data characteristics. Practitioners should also consider the number of unique categories because high-cardinality categorical variables can create many additional features. Data preprocessing should be performed consistently between training and inference so that the model receives information in the expected format.

Question 110

Which scenario is an example of regression rather than classification?

  1. Predicting whether an email is spam
  2. Predicting the category of a support request
  3. Predicting tomorrow’s electricity consumption in kilowatt-hours
  4. Predicting whether a transaction is fraudulent

Correct Answer: 3

Explanation

Predicting tomorrow’s electricity consumption in kilowatt-hours is a regression problem because the target is a continuous numerical value. Classification problems instead predict discrete categories, such as spam versus not spam or fraudulent versus legitimate. Regression models learn relationships between input variables and numerical outcomes. The appropriate evaluation metrics can include mean absolute error, mean squared error, or related measures. Selecting the correct machine learning task begins with understanding the type of outcome that the application needs to predict. The business requirement should determine whether the target is categorical, numerical, or another form of output.

Question 111

Which AWS service is specifically designed to analyze images and videos for objects, scenes, activities, or other visual information?

  1. Amazon Rekognition
  2. Amazon Transcribe
  3. Amazon Translate
  4. Amazon Polly

Correct Answer: 1

Explanation

Amazon Rekognition provides computer vision capabilities for analyzing images and videos. Depending on the supported feature, applications can use it to detect objects, scenes, activities, faces, or other visual information. This can support use cases such as media analysis, content moderation, and visual inspection workflows. Amazon Rekognition differs from Amazon Transcribe, which focuses on speech-to-text, and Amazon Polly, which provides text-to-speech. When using computer vision services, organizations should consider privacy, accuracy, appropriate use, and the specific characteristics of the images or videos being processed.

Question 112

Which AWS service is intended to extract printed text, forms, and tables from documents using machine learning?

  1. Amazon Kendra
  2. Amazon Textract
  3. Amazon Redshift
  4. Amazon EventBridge

Correct Answer: 2

Explanation

Amazon Textract is designed to extract text and structured information from documents. It can identify printed text and, depending on the document and feature used, extract information from forms and tables. This can reduce the need for applications to rely on manual document processing when converting scanned or digital documents into machine-readable information. Extracted information can then be passed to downstream workflows for analysis, search, or business processing. Organizations should still validate extracted data when accuracy is important because document quality, layout, handwriting, and other factors can affect results.

Question 113

Which concept describes the amount of time between sending an AI inference request and receiving its response?

  1. Latency
  2. Throughput
  3. Recall
  4. Accuracy

Correct Answer: 1

Explanation

Latency measures the time associated with processing a request and obtaining a response. In an AI application, latency can affect user experience, particularly for interactive workloads where users expect rapid responses. Latency can be influenced by factors such as model size, network conditions, workload characteristics, processing configuration, and service architecture. It should be evaluated alongside throughput, cost, and model quality because optimizing one characteristic may affect another. A real-time conversational application may have different latency requirements from a batch processing system that can tolerate longer processing times.

Question 114

An AI system’s outputs gradually become less accurate because the real-world data distribution has changed since the model was trained. What issue does this describe?

  1. Data drift
  2. Tokenization
  3. Encryption
  4. Prompt templating

Correct Answer: 1

Explanation

Data drift occurs when the characteristics or distribution of input data change over time compared with the data used during model development. If the real-world environment changes significantly, a model may become less accurate because its learned relationships no longer represent current conditions. Monitoring input distributions and model performance can help organizations detect potential drift. Depending on the situation, teams may need to retrain, fine-tune, recalibrate, or otherwise update the model. Drift monitoring is especially important for applications whose underlying business conditions, customer behavior, or external environments change frequently.

Question 115

Which AWS service can help discover sensitive information, such as personally identifiable information, in Amazon S3 data?

  1. Amazon Macie
  2. Amazon Polly
  3. Amazon Lex
  4. Amazon Route 53

Correct Answer: 1

Explanation

Amazon Macie is a data security and privacy service that can help discover and protect sensitive data stored in Amazon S3. It can identify certain types of sensitive information, including personally identifiable information, and can provide visibility into the security posture of S3 data. This can be useful when organizations are preparing data for analytics or AI workloads because sensitive information may require additional controls. Macie does not replace access management or encryption. Instead, it can complement other security mechanisms by helping organizations understand where sensitive information is stored.

Question 116

Which AWS capability allows an organization to record API activity and user actions for auditing purposes?

  1. AWS CloudTrail
  2. Amazon Polly
  3. Amazon S3 Glacier
  4. Amazon Rekognition

Correct Answer: 1

Explanation

AWS CloudTrail records AWS API activity and can provide information about actions performed within an AWS environment. These records can support auditing, security investigations, operational troubleshooting, and governance requirements. For AI workloads, CloudTrail can help organizations understand relevant API activity associated with AWS resources and services. Logging should be configured according to organizational requirements, and access to logs should be protected because audit records can contain sensitive operational information. CloudTrail complements monitoring services such as CloudWatch by focusing strongly on API and account activity rather than general application metrics.

Question 117

A company needs to analyze the sentiment expressed in customer reviews. Which AWS service is designed for this natural language processing task?

  1. Amazon Comprehend
  2. Amazon Rekognition
  3. Amazon Textract
  4. Amazon Kinesis

Correct Answer: 1

Explanation

Amazon Comprehend provides natural language processing capabilities that can analyze text and identify information such as sentiment and other linguistic characteristics. A business can use sentiment analysis to categorize customer feedback as positive, negative, neutral, or mixed, depending on the service’s supported capabilities. This can help organizations analyze large volumes of textual feedback more efficiently. The quality of results depends on the language, context, and characteristics of the input data. Organizations should validate outputs before using them for important business decisions, especially when text contains specialized terminology or ambiguous language.

Question 118

Which deployment approach is generally appropriate when an AI workload can process a large collection of requests without requiring an immediate response to each individual request?

  1. Real-time inference
  2. Batch inference
  3. Interactive prompting
  4. Human-only processing

Correct Answer: 2

Explanation

Batch inference is appropriate when predictions can be generated for a collection of inputs without requiring immediate responses for individual requests. For example, an organization might process thousands of records overnight and generate predictions for all of them. Batch processing can be more efficient for workloads where immediate responsiveness is not required. Real-time inference is more suitable when an application needs to respond to individual requests quickly. Choosing between batch and real-time approaches depends on latency requirements, workload volume, cost considerations, and how frequently predictions need to be generated.

Question 119

Which consideration is particularly important when selecting a foundation model for an application that must process both text and images?

  1. Whether the model supports the required input modalities
  2. Whether the model has the shortest name
  3. Whether the model is hosted on a user’s laptop
  4. Whether the model has the largest file size

Correct Answer: 1

Explanation

Foundation model selection should consider whether the model supports the input and output modalities required by the application. A workload that needs to analyze both text and images requires a model capable of processing those modalities. Other important selection factors can include response quality, latency, cost, context capacity, supported languages, safety characteristics, and task-specific performance. The largest or most complex model is not automatically appropriate for every application. Organizations should evaluate candidate models against representative workloads and business requirements before making a production decision.

Question 120

Which practice helps determine whether an AI model continues to meet its intended performance requirements after deployment?

  1. Ongoing monitoring and evaluation
  2. Removing all production logs
  3. Preventing users from providing feedback
  4. Disabling performance measurements

Correct Answer: 1

Explanation

Ongoing monitoring and evaluation help organizations determine whether an AI model continues to meet its intended requirements after deployment. Production conditions can change, data distributions can shift, and model behavior can differ from results observed during development. Monitoring can track operational characteristics such as latency and errors, while model evaluations can examine quality, accuracy, safety, or other application-specific measures. User feedback can also provide useful signals when collected appropriately. Organizations should establish relevant thresholds and review processes so that detected performance problems can trigger investigation, remediation, or model updates.