Exam2pass
0 items Sign In or Register
  • Home
  • IT Exams
  • Guarantee
  • FAQs
  • Reviews
  • Contact Us
  • Demo
Home > Amazon > Amazon Certifications > SAP-C02
Amazon SAP-C02  Exam Questions & Answers
Download Demo

  Printable PDF

Amazon SAP-C02 Exam Questions & Answers


Want to pass your Amazon SAP-C02 exam in the very first attempt? Try Exam2pass! It is equally effective for both starters and IT professionals.

  • Vendor: Amazon

    Exam Code: SAP-C02

    Exam Name: AWS Certified Solutions Architect - Professional (SAP-C02)

    Certification Provider: Amazon

    Total Questions: 733 Q&A ( View Details)

    Updated on: Jun 05, 2025

    Note: Product instant download. Please sign in and click My account to download your product.
  • Updated exam questions with all objectives covered
    Verified answers
    365 days free updates
    99% success rate
    100% money back guarantee
    24/7 customer support
  • PDF Only: $45.99 Software Only: $49.99 Software + PDF: $59.99

Related Exams

  • AIF-C01 Amazon AWS Certified AI Practitioner (AIF-C01)
  • ANS-C00 AWS Certified Advanced Networking - Specialty (ANS-C00)
  • ANS-C01 AWS Certified Advanced Networking - Specialty (ANS-C01)
  • AXS-C01 AWS Certified Alexa Skill Builder - Specialty (AXS-C01)
  • BDS-C00 AWS Certified Big Data - Speciality (BDS-C00)
  • CLF-C02 AWS Certified Cloud Practitioner (CLF-C02)
  • DAS-C01 AWS Certified Data Analytics - Specialty (DAS-C01)
  • DATA-ENGINEER-ASSOCIATE AWS Certified Data Engineer - Associate (DEA-C01)
  • DBS-C01 AWS Certified Database - Specialty (DBS-C01)
  • DOP-C02 AWS Certified DevOps Engineer - Professional (DOP-C02)
  • DVA-C02 AWS Certified Developer - Associate (DVA-C02)
  • MLA-C01 AWS Certified Machine Learning Engineer - Associate (MLA-C01)
  • MLS-C01 AWS Certified Machine Learning - Specialty (MLS-C01)
  • SAA-C03 AWS Certified Solutions Architect - Associate (SAA-C03)
  • SAP-C02 AWS Certified Solutions Architect - Professional (SAP-C02)
  • SCS-C01 AWS Certified Security - Specialty (SCS-C01)
  • SCS-C02 AWS Certified Security - Specialty (SCS-C02)
  • SOA-C01 AWS Certified SysOps Administrator - Associate (SOA-C01)
  • SOA-C02 AWS Certified SysOps Administrator - Associate (SOA-C02)

Related Certifications

  • Amazon Certification...

SAP-C02 Online Practice Questions and Answers

Questions 1

A company uses AWS Organizations for a multi-account setup in the AWS Cloud. The company uses AWS Control Tower for governance and uses AWS Transit Gateway for VPC connectivity across accounts.

In an AWS application account, the company's application team has deployed a web application that uses AWS Lambda and Amazon RDS. The company's database administrators have a separate DBA account and use the account to centrally manage all the databases across the organization. The database administrators use an Amazon EC2 instance that is deployed in the DBA account to access an RDS database that is deployed in the application account.

The application team has stored the database credentials as secrets in AWS Secrets Manager in the application account. The application team is manually sharing the secrets with the database administrators. The secrets are encrypted by the default AWS managed key for Secrets Manager in the application account. A solutions architect needs to implement a solution that gives the database administrators access to the database and eliminates the need to manually share the secrets.

Which solution will meet these requirements?

A. Use AWS Resource Access Manager (AWS RAM) to share the secrets from the application account with the DBA account. In the DBA account, create an IAM role that is named DBA-Admin. Grant the role the required permissions to access the shared secrets. Attach the DBA-Admin role to the EC2 instance for access to the cross-account secrets.

B. In the application account, create an IAM role that is named DBA-Secret. Grant the role the required permissions to access the secrets. In the DBA account, create an IAM role that is named DBA-Admin. Grant the DBA-Admin role the required permissions to assume the DBA-Secret role in the application account. Attach the DBA-Admin role to the EC2 instance for access to the cross-account secrets.

C. In the DBA account, create an IAM role that is named DBA-Admin. Grant the role the required permissions to access the secrets and the default AWS managed key in the application account. In the application account, attach resource-based policies to the key to allow access from the DBA account. Attach the DBA-Admin role to the EC2 instance for access to the cross-account secrets.

D. In the DBA account, create an IAM role that is named DBA-Admin. Grant the role the required permissions to access the secrets in the application account. Attach an SCP to the application account to allow access to the secrets from the DBA account. Attach the DBA- Admin role to the EC2 instance for access to the cross-account secrets.

Show Answer

Correct Answer: B

Option B is correct because creating an IAM role in the application account that has permissions to access the secrets and creating an IAM role in the DBA account that has permissions to assume the role in the application account eliminates the need to manually share the secrets. This approach uses cross- account IAM roles to grant access to the secrets in the application account. The database administrators can assume the role in the application account from their EC2 instance in the DBA account and retrieve the secrets without having to store them locally or share them manually2

References:

1: https://docs.aws.amazon.com/ram/latest/userguide/what-is.html

2: https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_cross-account-with-roles.html

3: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html https://docs.aws.amazon.com/secretsmanager/latest/userguide/tutorials_basic.html https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction.html

Questions 2

A company has migrated its forms-processing application to AWS. When users interact with the application, they upload scanned forms as files through a web application. A database stores user metadata and references to files that are stored in Amazon S3. The web application runs on Amazon EC2 instances and an Amazon RDS for PostgreSQL database.

When forms are uploaded, the application sends notifications to a team through Amazon Simple Notification Service (Amazon SNS). A team member then logs in and processes each form. The team member performs data validation on the form and extracts relevant data before entering the information into another system that uses an API.

A solutions architect needs to automate the manual processing of the forms. The solution must provide accurate form extraction, minimize time to market, and minimize long-term operational overhead.

Which solution will meet these requirements?

A. Develop custom libraries to perform optical character recognition (OCR) on the forms. Deploy the libraries to an Amazon Elastic Kubernetes Service (Amazon EKS) cluster as an application tier. Use this tier to process the forms when forms are uploaded. Store the output in Amazon S3. Parse this output by extracting the data into an Amazon DynamoDB table. Submit the data to the target system's API. Host the new application tier on EC2 instances.

B. Extend the system with an application tier that uses AWS Step Functions and AWS Lambda. Configure this tier to use artificial intelligence and machine learning (AI/ML) models that are trained and hosted on an EC2 instance to perform optical character recognition (OCR) on the forms when forms are uploaded. Store the output in Amazon S3. Parse this output by extracting the data that is required within the application tier. Submit the data to the target system's API.

C. Host a new application tier on EC2 instances. Use this tier to call endpoints that host artificial intelligence and machine learning (Al/ML) models that are trained and hosted in Amazon SageMaker to perform optical character recognition (OCR) on the forms. Store the output in Amazon ElastiCache. Parse this output by extracting the data that is required within the application tier. Submit the data to the target system's API.

D. Extend the system with an application tier that uses AWS Step Functions and AWS Lambda. Configure this tier to use Amazon Textract and Amazon Comprehend to perform optical character recognition (OCR) on the forms when forms are uploaded. Store the output in Amazon S3. Parse this output by extracting the data that is required within the application tier. Submit the data to the target system's API.

Show Answer

Correct Answer: D

Extend the system with an application tier that uses AWS Step Functions and AWS Lambda. Configure this tier to use Amazon Textract and Amazon Comprehend to perform optical character recognition (OCR) on the forms when forms are uploaded. Store the output in Amazon S3. Parse this output by extracting the data that is required within the application tier. Submit the data to the target system's API. This solution meets the requirements of accurate form extraction, minimal time to market, and minimal long-term operational overhead. Amazon Textract and Amazon Comprehend are fully managed and serverless services that can perform OCR and extract relevant data from the forms, which eliminates the need to develop custom libraries or train and host models. Using AWS Step Functions and Lambda allows for easy automation of the process and the ability to scale as needed.

Questions 3

A company wants to run a custom network analysis software package to inspect traffic as traffic leaves and enters a VPC. The company has deployed the solution by using AWS Cloud Formation on three Amazon EC2 instances in an Auto Scaling group. All network routing has been established to direct traffic to the EC2 instances.

Whenever the analysis software stops working, the Auto Scaling group replaces an instance. The network routes are not updated when the instance replacement occurs.

Which combination of steps will resolve this issue? {Select THREE.)

A. Create alarms based on EC2 status check metrics that will cause the Auto Scaling group to replace the failed instance.

B. Update the Cloud Formation template to install the Amazon CloudWatch agent on the EC2 instances. Configure the CloudWatch agent to send process metrics for the application.

C. Update the Cloud Formation template to install AWS Systems Manager Agent on the EC2 instances. Configure Systems Manager Agent to send process metrics for the application.

D. Create an alarm for the custom metric in Amazon CloudWatch for the failure scenarios.Configure the alarm to publish a message to an Amazon Simple Notification Service {Amazon SNS) topic.

E. Create an AWS Lambda function that responds to the Amazon Simple Notification Service (Amazon SNS) message to take the instance out of service. Update the network routes to point to the replacement instance.

F. In the Cloud Formation template, write a condition that updates the network routes when a replacement instance is launched.

Show Answer More Questions

Correct Answer: BDE

Use Amazon S3 for web hosting with AWS AppSync for database API services. Use Amazon Simple Queue Service (Amazon SQS) for order queuing. Use AWS Lambda for business logic with an Amazon SQS dead-letter queue for retaining failed orders.

This solution will allow you to:

1.

Host a static website on Amazon S3 without provisioning or managing servers1.

2.

Use AWS AppSync to create a scalable GraphQL API that connects to your database and other data sources1.

3.

Use Amazon SQS to decouple and scale your order processing microservices1.

4.

Use AWS Lambda to run code for your business logic without provisioning or managing servers1.

5.

Use an Amazon SQS dead-letter queue to retain messages that can't be processed by your Lambda function1.

Why Choose Exam2pass SAP-C02 Exam PDF and VCE Simulator?

  • 100% Pass and Money Back Guarantee

    Exam2pass SAP-C02 exam dumps are contained with latest SAP-C02 real exam questions and answers. Exam2pass SAP-C02 PDF and VCE simulator are revised by the most professional SAP-C02 expert team. All the SAP-C02 exam questions are selected from the latest real exam and answers are revised to be accurate. 100% pass guarantee and money back on exam failure.

  • The Most Professional Support Service

    Exam2pass has the most skillful SAP-C02 experts. Candidates can get timely help when needed. Exam2pass SAP-C02 exam PDF and VCE simulator are the most up-to-date and valid. The most professional support service are provided to help the SAP-C02 candidates at anytime and anywhere.

  • 365 Days Free Update Download

    Exam2pass SAP-C02 exam PDF and VCE simulator are timely updated in 365 days a year. Users can download the update for free for 365 days after payment. Exam2pass SAP-C02 exam dumps are updated frequently by the most professional SAP-C02 expert team. SAP-C02 candidates can have the most valid SAP-C02 exam PDF and VCE at any time when needed.

  • Free Demo Download

    Download free demo of the Exam2pass exam PDF and VCE simulator and try it. Do not need to pay for the whole product before you try the free trial version. Get familiar about the exam questions and exam structure by trying the free sample questions of the exam PDF and VCE simulator. Try before purchase now!

Exam2Pass----The Most Reliable Exam Preparation Assistance

There are tens of thousands of certification exam dumps provided on the internet. And how to choose the most reliable one among them is the first problem one certification candidate should face. Exam2Pass provide a shot cut to pass the exam and get the certification. If you need help on any questions or any Exam2Pass exam PDF and VCE simulators, customer support team is ready to help at any time when required.

Home | Guarantee & Policy |  Privacy & Policy |  Terms & Conditions |  How to buy |  FAQs |  About Us |  Contact Us |  Demo |  Reviews

2025 Copyright @ exam2pass.com All trademarks are the property of their respective vendors. We are not associated with any of them.