Final Assessment Review (Qns & Ans)
2025
Multiple Choice Questions
Which AWS service automates resource management and
provisioning?
A) AWS Lambda
B) AWS CloudFormation
C) AWS Elastic Beanstalk
D) Amazon EC2
Correct ANS: B
©2025
,Rationale: AWS CloudFormation allows users to define
infrastructure as code, automating the management and
provisioning of AWS resources.
What scripting language is primarily used in AWS Lambda for
serverless applications?
A) JavaScript (Node.js)
B) Ruby
C) Go
D) Python
Correct ANS: A
Rationale: AWS Lambda natively supports several programming
languages, with JavaScript (Node.js) being a popular choice for
serverless applications.
Which service allows users to run scripts without provisioning
infrastructure?
A) EC2
B) Lambda
C) S3
D) CloudWatch
Correct ANS: B
©2025
,Rationale: AWS Lambda lets users execute code in response to
events without the need to manage servers.
Which command uses the AWS CLI to copy files to an S3
bucket?
A) aws s3 cp
B) aws s3 mv
C) aws s3 put
D) aws s3 copy
Correct ANS: A
Rationale: The aws s3 cp command is used to copy files from the
local file system to an S3 bucket.
Which AWS service can be automated using AWS Systems
Manager?
A) EC2 Instances
B) Elastic Load Balancers
C) Route 53 DNS records
D) Lambda Functions
Correct ANS: A
Rationale: AWS Systems Manager is primarily used for managing
EC2 instances but can interact with other AWS services as well.
©2025
, Fill-in-the-Blank Questions
AWS _________ allows users to deploy and manage
infrastructure as code through templates.
Correct ANS: CloudFormation
Rationale: CloudFormation is the core service for infrastructure
management as code.
In AWS Lambda, the maximum timeout duration for a function is
______ minutes.
Correct ANS: 15
Rationale: Lambda functions can run for a maximum of 15
minutes before timing out.
The AWS service that offers a fully managed CI/CD solution is
known as _________.
Correct ANS: AWS CodePipeline
Rationale: AWS CodePipeline automates the building, testing,
and deployment of applications.
In a CloudFormation template, resources are declared in the
_________ section.
Correct ANS: Resources
©2025