The AWS Certified AI Practitioner (AIF-C01) exam validates your ability to understand and use AI services on AWS. It is ideal for individuals looking to demonstrate their knowledge of AI concepts and AWS services.
A company needs to analyze large datasets in real-time. Which AWS service should they use?
AAmazon EMR
BAmazon Athena
CAmazon Kinesis
DAWS Glue
Explanation
Amazon Kinesis is designed for real-time streaming; the others are more suited for batch processing or querying.
Q322
Which AWS service allows you to deploy machine learning models?
AAmazon SageMaker
BAWS Lambda
CAmazon RDS
DAWS CloudFormation
Explanation
Amazon SageMaker is specifically designed for deploying machine learning models; the others serve different purposes.
Q323
A company needs to analyze large datasets in real-time. Which service should they use?
AAmazon S3
BAmazon Redshift
CAmazon Kinesis
DAWS Glue
Explanation
Amazon Kinesis is designed for real-time data processing, while the other options do not specialize in this.
Q324
What happens when a Lambda function's timeout is reached?
AThe function completes successfully
BAn error is thrown and logs recorded
CIt automatically retries the execution
DThe function restarts from the beginning
Explanation
When the timeout is reached, the function errors out and logs are generated; it does not automatically retry.
Q325
Which AWS service is best for real-time event streaming?
AAmazon Kinesis
BAmazon S3
CAmazon RDS
DAmazon EC2
Explanation
Amazon Kinesis specializes in real-time data processing, unlike S3 (storage), RDS (databases), or EC2 (compute).
Q326
A company needs to securely manage access to resources. Which service should they use?
AAWS IAM
BAWS CloudTrail
CAWS Lambda
DAWS VPC
Explanation
AWS IAM is designed specifically for managing access, while CloudTrail tracks API calls and Lambda runs code in response to events.
Q327
You are configuring AWS S3 bucket policies. What happens if you specify an action that is allowed for user A but denied for user B?
AUser A can perform action.
BUser B can perform action.
CBoth users can perform action.
DAction denied for both users.
Explanation
In AWS, permissions are evaluated based on the explicitly allowed actions, so user A can perform it while user B cannot.
Q328
Which AWS service allows real-time data processing?
AAmazon Kinesis
BAmazon S3
CAWS Lambda
DAmazon RDS
Explanation
Amazon Kinesis enables real-time data streams, while S3 is for storage, Lambda is for serverless functions, and RDS is a managed database service.
Q329
A company needs to store large datasets safely and retrieve them quickly. Which AWS service should they use?
AAmazon S3
BAmazon Glacier
CAWS DynamoDB
DAWS Snowball
Explanation
DynamoDB provides fast retrieval for large datasets, while S3 is for storage, Glacier is for archival, and Snowball is for data transfer.
Q330
You are configuring a machine learning model and want to avoid overfitting. What should you do?
AIncrease training dataset size
BReduce model complexity
CAdd more features
DBoth A and B
Explanation
Increasing dataset size and reducing model complexity help prevent overfitting, while adding more features can worsen it.