AWS Certified SAP on AWS Specialty PAS-C01 (PAS-C01) — Questions 14261500

1733 questions total · 24pages · All types, answers revealed

Page 19

Page 20 of 24

Page 21
1426
MCQhard

A company runs a stateful web application on EC2 instances in an Auto Scaling group with a dynamic scaling policy based on CPU utilization. The application maintains session state in memory on each instance. Users report that they are frequently logged out and lose their session data during scaling events. What should the company do to resolve this issue?

A.Change the scaling policy to a simple scaling policy instead of dynamic scaling
B.Enable sticky sessions (session affinity) on the Application Load Balancer
C.Modify the application to store session state in an Amazon ElastiCache cluster
D.Increase the cooldown period for the Auto Scaling group
AnswerC

ElastiCache provides a centralized session store that persists across instance terminations, ensuring session continuity during scaling events.

Why this answer

Option C is correct because storing session state externally in ElastiCache decouples session data from individual EC2 instances. This ensures that when instances are terminated or added during scaling events, users retain their session state regardless of which instance serves their request. ElastiCache provides a low-latency, in-memory cache that is ideal for session persistence in stateful web applications.

Exam trap

The trap here is that candidates often confuse sticky sessions (session affinity) with true session persistence, not realizing that sticky sessions only route traffic to the same instance but do not protect against instance termination during scaling events.

How to eliminate wrong answers

Option A is wrong because changing to a simple scaling policy does not address the root cause of session loss; simple scaling still terminates instances and does not preserve in-memory session state. Option B is wrong because sticky sessions (session affinity) on the Application Load Balancer only route a user to the same instance, but if that instance is terminated during scale-in, the session is lost and the user cannot be reconnected to the same instance. Option D is wrong because increasing the cooldown period only delays the next scaling activity but does not prevent session loss when instances are eventually terminated.

1427
MCQeasy

A company is planning to migrate a legacy Oracle database to Amazon RDS for Oracle. The database is 500 GB and has a 24/7 workload. The company needs minimal downtime. Which AWS service should be used for the migration?

A.AWS Command Line Interface (CLI)
B.AWS Schema Conversion Tool (SCT)
C.AWS Snowball
D.AWS Database Migration Service (DMS)
AnswerD

DMS supports minimal-downtime migrations with ongoing replication.

Why this answer

Option B is correct because AWS DMS supports minimal-downtime migrations using change data capture. Option A is wrong because AWS Snowball is for large-scale data transfer, not minimal downtime. Option C is wrong because AWS SCT is a schema conversion tool, not a data migration tool.

Option D is wrong because AWS CLI is not a migration service.

1428
Multi-Selecthard

Which TWO options are valid strategies for backing up an SAP HANA database running on Amazon EC2? (Choose two.)

Select 2 answers
A.Use Amazon RDS automated backups for SAP HANA.
B.Use SAP HANA Backint to back up to Amazon S3.
C.Use AWS Backup to create EBS snapshots of the HANA data volumes.
D.Use Amazon S3 Lifecycle policies to transition HANA backups to Glacier.
E.Use EC2 instance store to copy HANA data files.
AnswersB, C

Backint is the native SAP HANA backup integration.

Why this answer

Option A is correct: AWS Backup can back up EBS volumes, which can be used for HANA. Option C is correct: SAP HANA Backint integration with Amazon S3 is a supported backup method. Option B is wrong because RDS does not support SAP HANA.

Option D is wrong because S3 Lifecycle policies are for object management, not database backup. Option E is wrong because EC2 instance store is ephemeral and not for backup.

1429
Multi-Selectmedium

An SAP system administrator is planning to migrate an on-premises SAP ERP system to AWS. The system uses Oracle Database. Which THREE AWS services can be used to migrate the Oracle database to Amazon RDS for Oracle with minimal downtime? (Choose 3)

Select 3 answers
A.Oracle Data Guard
B.AWS Snowball Edge
C.AWS Schema Conversion Tool (SCT)
D.AWS Database Migration Service (DMS)
E.AWS CloudEndure Migration
AnswersA, C, D

C is correct: Data Guard can replicate to RDS.

Why this answer

Options A, C, and D are correct. A: AWS DMS can perform live migration with minimal downtime. C: Oracle Data Guard can be used for cross-database replication.

D: AWS SCT helps convert schemas. B is incorrect because Snowball is for large data transfer, not minimal downtime live migration. E is incorrect because CloudEndure is for server migration, not database migration.

1430
MCQeasy

An SAP workload is running on an EC2 instance in a private subnet. The application needs to access an S3 bucket for backups. Which AWS service should be used to enable private connectivity without traversing the internet?

A.Internet Gateway
B.NAT Gateway
C.VPC Endpoint (Gateway)
D.AWS Site-to-Site VPN
AnswerC

Gateway VPC Endpoint provides private connectivity to S3 without internet.

Why this answer

A VPC Endpoint (Gateway) allows private connectivity between an EC2 instance in a private subnet and an S3 bucket without traversing the internet. It uses AWS’s internal network and route table entries to direct S3 traffic through the endpoint, ensuring data never leaves the AWS backbone. This is the correct choice for SAP workloads requiring secure, low-latency backups to S3.

Exam trap

The trap here is that candidates often confuse NAT Gateway with providing private connectivity, but NAT Gateway still routes traffic through the internet, whereas a VPC Endpoint keeps traffic entirely within the AWS network.

How to eliminate wrong answers

Option A is wrong because an Internet Gateway (IGW) is a horizontally scaled, redundant component that allows communication between a VPC and the internet, not private connectivity; it would expose the EC2 instance to the public internet. Option B is wrong because a NAT Gateway enables outbound internet access from a private subnet but still routes traffic through the internet, not private connectivity to S3; it also incurs additional data transfer costs. Option D is wrong because AWS Site-to-Site VPN connects on-premises networks to a VPC over the internet via IPsec tunnels, not for VPC-to-S3 private access; it is irrelevant for EC2-to-S3 communication within the same AWS region.

1431
MCQeasy

A company runs SAP Business Suite on an SAP HANA database on AWS. The database uses EBS gp2 volumes. The operations team notices high latency during peak hours. The metrics show that the volume queue depth is consistently above the recommended threshold. What is the MOST cost-effective change to reduce latency?

A.Migrate from gp2 to io2 EBS volumes with the same size.
B.Modify the volume to use Provisioned IOPS (io1) with a higher IOPS value.
C.Add an additional EBS volume and stripe the volumes using LVM.
D.Increase the size of the existing EBS gp2 volume to a larger size.
AnswerD

Larger gp2 volumes have higher baseline IOPS, reducing queue depth.

Why this answer

Increasing the size of an existing gp2 volume is the most cost-effective solution because gp2 volumes have a baseline performance of 3 IOPS per GB, and they can burst up to 3,000 IOPS for volumes up to 1,000 GB. By increasing the volume size, you raise the baseline IOPS, which reduces the queue depth without incurring the higher per-GB cost of io1 or io2 volumes. This directly addresses the high latency caused by queue depth exceeding the recommended threshold during peak hours.

Exam trap

The trap here is that candidates often assume Provisioned IOPS (io1/io2) is always the solution for high latency, but they overlook the cost-effective burst capability of gp2 volumes when increased in size.

How to eliminate wrong answers

Option A is wrong because migrating to io2 volumes with the same size would increase cost significantly (io2 has a higher per-GB price and requires provisioning IOPS separately) without being necessary—gp2 can achieve the needed performance by simply increasing size. Option B is wrong because modifying to io1 with a higher IOPS value would also increase cost unnecessarily; gp2's burst mechanism can handle peak loads if the volume size is increased, and io1 is generally more expensive than gp2 for equivalent performance. Option C is wrong because adding an additional EBS volume and striping with LVM does not inherently reduce queue depth on the original volume—it distributes I/O across multiple volumes but does not increase the IOPS or throughput of the existing gp2 volume, and it adds complexity without addressing the root cause of queue depth.

1432
MCQhard

Refer to the exhibit. An EC2 instance is running and has a public IP address. A security engineer needs to verify that the instance is not publicly accessible from the internet. Which additional step is required?

A.Check if the instance has a public IP.
B.Check the route table for an internet gateway.
C.Check the security group inbound rules.
D.Check the network ACL of the subnet.
AnswerC

Security groups control inbound traffic; without rules, traffic is denied.

Why this answer

Option C is correct because the security group rules determine inbound access. Option A is incorrect because NACLs are not shown. Option B is incorrect because the instance has a public IP.

Option D is incorrect because subnet routing does not affect inbound security.

1433
MCQeasy

A company runs SAP on AWS and uses a Multi-AZ RDS for SAP ASE database. The operations team receives an alert that the database instance failed over automatically. After the failover, the SAP application servers are unable to connect to the database. The team checks the RDS console and sees that the DB instance status is 'available' and the endpoint is the same as before. The security groups and network ACLs have not changed. What is the MOST likely reason for the connectivity issue?

A.The RDS endpoint changed after the failover.
B.The application servers have cached the old database IP address and need to flush DNS.
C.The DNS record for the RDS endpoint did not update after the failover.
D.The security group for the database instance no longer allows traffic from the application servers.
AnswerB

DNS caching can cause stale IP addresses.

Why this answer

Option A is correct because after a failover, the DNS record for the RDS endpoint is updated to point to the new primary, but the application may still be using the old IP due to DNS caching. Option B is wrong because the endpoint remains the same. Option C is wrong because Multi-AZ failover updates the DNS record.

Option D is wrong because the failover does not change the security group.

1434
MCQmedium

A company is migrating its SAP system to AWS and needs to ensure high availability for the SAP Central Services (ASCS/ERS) instance. The solution must support automatic failover in case of an instance failure. Which AWS service should be used to manage the floating IP address required for the SAP high availability setup?

A.Amazon Route 53
B.Elastic IP address
C.Amazon CloudFront
D.AWS Global Accelerator
AnswerA

Route 53 with health checks and failover routing can manage floating IP via DNS.

Why this answer

Amazon Route 53 with health checks and failover routing can be used to manage a DNS-based floating IP. Option B is correct. Elastic IP addresses are static public IPs but do not automatically reassign on instance failure without custom scripting.

AWS Global Accelerator provides static IP addresses but is designed for traffic optimization, not SAP HA failover. Amazon CloudFront is a CDN service.

1435
MCQhard

A company uses SAP S/4HANA on AWS with a multi-AZ deployment. The primary database is in us-east-1a and the secondary in us-east-1b. During a failover test, the secondary database becomes active but performance degrades significantly. Which configuration is most likely causing the performance issue?

A.The secondary instance is in a different VPC
B.The secondary instance is a smaller instance type than the primary
C.The secondary instance uses a different storage type (e.g., GP2 instead of Provisioned IOPS)
D.The secondary database is running a different HANA version
AnswerB

Smaller instance type cannot handle the same workload, causing performance degradation.

Why this answer

Option C is correct because in a multi-AZ deployment, primary and secondary instances should be of the same size to avoid performance degradation after failover. Option A is wrong because different storage types can cause performance differences. Option B is wrong because network latency between AZs is typically low.

Option D is wrong because the HANA version should be the same.

1436
MCQmedium

A company is running an SAP HANA database on AWS using an i3.16xlarge instance. The database storage is configured with multiple EBS gp2 volumes in a RAID 0 stripe to meet IOPS requirements. During a workload spike, the application experiences increased latency and the database performance degrades. The CloudWatch metrics show high Average Queue Length (avg_queue_len) on the EBS volumes but not 100% utilization of the CPU. Which design change is MOST likely to resolve the performance issue?

A.Replace gp2 volumes with io2 Block Express volumes to provide consistent IOPS performance.
B.Move the database to an i3en.24xlarge instance to increase network and EBS bandwidth.
C.Enable EBS optimization on the existing instance to improve throughput.
D.Add two additional gp2 volumes to the RAID 0 stripe to increase throughput.
AnswerA

io2 Block Express offers provisioned IOPS with sustained performance, eliminating burst credit exhaustion.

Why this answer

The high Average Queue Length indicates that the EBS volumes are saturating their IOPS capacity, causing requests to queue up. gp2 volumes have a burst-bucket model that can exhaust credits under sustained high I/O, leading to throttled performance. io2 Block Express volumes provide consistent, provisioned IOPS without burst limitations, directly resolving the queuing issue without requiring instance or stripe changes.

Exam trap

The trap here is that candidates assume adding more volumes to a RAID 0 stripe will linearly increase IOPS, but they overlook that gp2 volumes have a shared burst credit pool per volume and that the bottleneck is IOPS credit exhaustion, not throughput.

How to eliminate wrong answers

Option B is wrong because moving to an i3en.24xlarge increases network and EBS bandwidth, but the bottleneck is IOPS saturation on the EBS side, not instance bandwidth or CPU; the CPU is not fully utilized, so a larger instance does not address the root cause. Option C is wrong because EBS optimization is already enabled by default on i3.16xlarge instances; toggling it would not change the IOPS ceiling of gp2 volumes. Option D is wrong because adding more gp2 volumes to the RAID 0 stripe increases total throughput (MB/s) but does not increase the per-volume IOPS credit pool or eliminate the burst-bucket exhaustion; the queue length will still spike once credits are depleted.

1437
MCQmedium

A company is migrating an SAP system to AWS and needs to ensure that the migration complies with regulatory requirements for data residency. The source system is in Germany and the target AWS Region is Frankfurt. Which step should be taken to address data residency?

A.Use AWS Artifact to review and accept the Data Processing Agreement (DPA) for the Frankfurt region.
B.Enable cross-region replication to the eu-west-1 (Ireland) region for disaster recovery.
C.Use AWS Database Migration Service (AWS DMS) with ongoing replication to a secondary cluster in Frankfurt.
D.Configure AWS Config rules to prevent data from leaving the Frankfurt region.
AnswerA

AWS Artifact provides compliance documents and DPAs that address data residency requirements.

Why this answer

Using AWS Artifact to review and accept Data Processing Agreements (DPAs) specific to the Frankfurt region ensures compliance with EU data residency requirements. Option A is wrong because data must reside in Frankfurt, not be transferred to eu-central-1? Actually Frankfurt is eu-central-1, but enabling cross-region replication would violate data residency. Option B is wrong because AWS DMS replicates data continuously, which may not satisfy data residency if replication crosses regions.

Option D is wrong because AWS Config rules do not enforce data residency.

1438
MCQmedium

An SAP system is running on EC2 and uses a Classic Load Balancer to distribute traffic to web dispatchers. The operations team notices that the load balancer is not distributing traffic evenly. What is the most likely cause?

A.Cross-zone load balancing is disabled.
B.Connection draining is not enabled.
C.The load balancer uses a flow hash algorithm that may not evenly distribute requests with many long-lived connections.
D.The health check interval is set too high.
AnswerC

Classic Load Balancer's flow hash can lead to uneven distribution for persistent connections.

Why this answer

Option D is correct because Classic Load Balancer uses a flow hash algorithm that may cause uneven distribution with long-lived connections. Option A is wrong because health checks don't affect distribution balance. Option B is wrong because cross-zone load balancing helps but does not guarantee even distribution.

Option C is wrong because connection draining does not affect distribution.

1439
MCQhard

During a disaster recovery test, an SAP administrator finds that the SAP application cannot connect to the replicated HANA database in the DR region. The replication is done using SAP HANA System Replication. What is the MOST likely cause?

A.The replication link is down because the source database is not accessible.
B.The application connection string still points to the primary database endpoint.
C.The HANA database in the DR region is not synchronized due to network latency.
D.The application server needs to be restarted to recognize the new database.
AnswerB

After failover, the application must use the DR database endpoint.

Why this answer

Option C is correct because HANA System Replication replicates the database, but the application connection strings must be updated manually or via automation. Option A is wrong because replication is asynchronous, so there is no mismatch. Option B is wrong because the replication is not interrupted by lack of connectivity.

Option D is wrong because the DR database is a separate instance; application restart is not sufficient.

1440
MCQhard

A company runs a multi-tier application on AWS. The application consists of an Application Load Balancer (ALB) that distributes traffic to a fleet of EC2 instances running a web server. The web servers write logs to an Amazon EFS file system mounted across all instances. The operations team reports that the web application is experiencing intermittent high latency and timeouts. Monitoring shows that the ALB's target response time is normal, but the application's internal processing time is high. Further investigation reveals that the EFS performance metrics show high 'BurstCreditBalance' and 'PercentIOLimit' during the latency spikes. The EFS file system is configured with 'Bursting' throughput mode. The team needs to resolve the latency issue with minimal cost. What should they do?

A.Migrate the log files to Amazon S3 and use S3 Transfer Acceleration for writes.
B.Switch the EFS throughput mode to Provisioned Throughput to guarantee higher performance.
C.Add more EC2 instances to the Auto Scaling group to distribute the I/O load.
D.Increase the size of the EFS file system to increase the baseline throughput and burst credits.
AnswerD

Larger EFS file systems have higher baseline throughput and accumulate more burst credits, reducing I/O wait.

Why this answer

Option D is correct because increasing the size of an EFS file system in Bursting mode raises its baseline throughput and burst credit accumulation rate. The high BurstCreditBalance and PercentIOLimit indicate the file system is exhausting its burst credits and hitting its I/O limit, causing throttling and latency. A larger EFS volume provides a higher baseline throughput, reducing reliance on burst credits and smoothing performance without additional cost for Provisioned Throughput.

Exam trap

The trap here is that candidates assume 'Bursting' mode is always sufficient and look to add compute capacity (Option C) or change storage type (Option A), when the real issue is that the file system is too small to sustain the workload's I/O demands, and resizing it is the most cost-effective fix.

How to eliminate wrong answers

Option A is wrong because migrating logs to S3 with S3 Transfer Acceleration does not address the EFS I/O bottleneck; it changes the storage target but the web servers still write to EFS, and S3 Transfer Acceleration is for accelerating uploads over long distances, not for reducing local file system latency. Option B is wrong because switching to Provisioned Throughput would increase cost unnecessarily; the issue is that the current Bursting mode is insufficient due to small file system size, and Provisioned Throughput is a more expensive solution when simply resizing the file system can resolve the problem at lower cost. Option C is wrong because adding more EC2 instances would increase the aggregate I/O load on the same EFS file system, worsening the contention and latency, not resolving it.

1441
Multi-Selectmedium

Which TWO options are best practices for securing SAP systems on AWS?

Select 2 answers
A.Enable encryption at rest for EBS volumes and RDS databases
B.Use the AWS account root user for daily administration
C.Place SAP application servers in a public subnet with direct internet access
D.Store SAP transport files in a public S3 bucket
E.Use security groups to control traffic to SAP instances
AnswersA, E

Encryption protects data at rest.

Why this answer

Option B is correct because security groups act as virtual firewalls for EC2 instances. Option C is correct because encryption at rest is a security best practice. Option A is wrong because direct internet access is not recommended.

Option D is wrong because public S3 buckets are insecure. Option E is wrong because using the root user is not a best practice.

1442
MCQmedium

An organization is migrating a legacy Windows-based .NET application to AWS. The application currently uses IIS and SQL Server on a single server. They want to minimize changes to the application code. Which migration strategy is most appropriate?

A.Replatform by moving to Amazon RDS for SQL Server and Elastic Beanstalk
B.Rehost the application on Amazon EC2 with the same OS and database
C.Refactor the application to use a microservices architecture
D.Repurchase by moving to a SaaS-based application
AnswerB

Rehosting moves the workload as-is, minimizing code changes.

Why this answer

Rehosting (lift-and-shift) involves moving the application to AWS as-is, typically using EC2. This minimizes code changes. Option D is correct because it involves minimal modifications.

Option A (refactor) requires significant code changes. Option B (replatform) may require some configuration changes but still involves modifications. Option C (repurchase) means buying a new product, which is not minimal change.

1443
MCQhard

Refer to the exhibit. An SAP application load balancer (ALB) is configured with the CloudFormation snippet. The ALB is not distributing traffic to the EC2 instances. What is the most likely cause?

A.The security group does not allow inbound traffic
B.The target type is instance but the instances are not registered
C.The target group is not associated with the load balancer
D.The load balancer scheme is internet-facing but instances are in private subnets
AnswerC

A listener is needed to associate the target group; missing listener prevents traffic distribution.

Why this answer

The snippet does not include a listener for the ALB. Without a listener, the ALB cannot accept traffic. The target group is defined but not associated with the ALB via a listener rule.

The scheme is internet-facing, which is correct. The security group may allow traffic, but no listener exists.

1444
MCQhard

An SAP system on AWS is experiencing slow performance for batch jobs. The jobs are I/O intensive and write large amounts of data to EBS volumes. CloudWatch metrics show that the EBS volumes are reaching their throughput limits. Which action will MOST effectively improve performance?

A.Add read replicas to offload read traffic.
B.Increase the size of the EBS volumes to improve baseline throughput.
C.Use Multi-AZ for the database.
D.Move the data to instance store volumes.
AnswerB

Larger gp2/gp3 volumes have higher throughput.

Why this answer

Option C is correct because increasing the volume size of gp2/gp3 increases baseline throughput. Option A is wrong because instance store is ephemeral and not suitable for persistent data. Option B is wrong because read replicas do not help with write throughput.

Option D is wrong because Multi-AZ does not increase throughput.

1445
MCQhard

A company is migrating a large SAP ERP system to AWS. The system has multiple interfaces with external systems using RFC connections. During the migration, the team needs to minimize changes to the external systems' configurations. What approach should be taken for the RFC connections?

A.Change the external systems to use DNS names instead of IP addresses
B.Use the private IP address of the EC2 instance
C.Use a NAT Gateway to route the RFC traffic
D.Assign an Elastic IP address to the SAP application server
AnswerD

Elastic IP remains static, avoiding changes to external RFC configurations.

Why this answer

Using an Elastic IP address for the SAP application server ensures the public IP remains the same after migration, minimizing changes. Option A (change external systems) is not minimal. Option B (private IP) may not be reachable.

Option D (NAT Gateway) is for outbound traffic.

1446
MCQmedium

An SAP system is deployed on AWS using an Auto Scaling group of EC2 instances for the SAP application server layer. The application servers are stateless. The company wants to ensure that when a new instance is launched, it automatically registers with the SAP Web Dispatcher. The Web Dispatcher is configured with an Application Load Balancer (ALB). What is the best way to achieve automatic registration?

A.Use Amazon CloudWatch Events to trigger an AWS Lambda function that registers the instance.
B.Use AWS Systems Manager State Manager to run a registration script on the instance.
C.Configure the EC2 instance's user data to run a script that registers with the Web Dispatcher.
D.Attach the Auto Scaling group to an ALB target group.
AnswerD

Auto Scaling automatically registers instances with the target group.

Why this answer

Option C is correct: The Auto Scaling group can be attached to the ALB target group, so instances are automatically registered. Option A is wrong because user data can configure the instance but not register with Web Dispatcher directly. Option B is wrong because CloudWatch Events can trigger a Lambda, but this is more complex.

Option D is wrong because Systems Manager State Manager can run scripts, but not as straightforward as attaching to ALB.

1447
MCQeasy

A company plans to migrate their SAP HANA database to AWS. They require the highest availability with automatic failover in case of an AZ failure. Which architecture should they use?

A.Multi-AZ with HANA System Replication in sync mode and automatic failover.
B.Single AZ with HANA System Replication to a standby in the same AZ.
C.Single AZ with daily backups to Amazon S3.
D.Multi-AZ with HANA System Replication in async mode and manual failover.
AnswerA

Provides automatic failover across AZs.

Why this answer

Option A is correct because it meets the requirement for highest availability with automatic failover in case of an AZ failure. HANA System Replication (HSR) in synchronous mode ensures zero data loss (RPO=0) by committing transactions only after they are replicated to the standby, and when combined with Multi-AZ deployment, it provides automatic failover across Availability Zones. This architecture is the AWS-recommended pattern for SAP HANA high availability, leveraging the AWS Multi-AZ concept with HSR's built-in automatic takeover capability.

Exam trap

The trap here is that candidates often confuse 'high availability' with 'disaster recovery' and select a backup-only option (C) or a Single AZ option (B), failing to recognize that automatic failover across AZs requires both Multi-AZ deployment and synchronous replication with automated takeover.

How to eliminate wrong answers

Option B is wrong because Single AZ deployment cannot protect against an AZ failure; if the entire AZ goes down, both primary and standby are lost. Option C is wrong because daily backups to Amazon S3 provide disaster recovery (point-in-time recovery) but do not offer automatic failover or high availability; recovery time can be hours, not seconds. Option D is wrong because HSR in async mode may result in data loss (RPO > 0) during a failover, and manual failover does not meet the 'automatic failover' requirement stated in the question.

1448
MCQhard

A company is migrating an SAP BusinessObjects (BO) system to AWS. The system includes a large number of reports and users. What is the recommended approach to migrate the SAP BO repository?

A.Reinstall SAP BO on AWS and manually copy the report files
B.Use AWS Database Migration Service (DMS) to replicate the repository database
C.Use the SAP BusinessObjects Promotion Management tool to export and import the repository
D.Manually extract the repository files from the database and copy them to AWS
AnswerC

Promotion Management is designed for this purpose.

Why this answer

Option A is correct because SAP BO provides a built-in import/export tool (Promotion Management) that migrates the repository content. Option B is wrong because manual extraction is error-prone. Option C is wrong because AWS DMS is for databases, not application content.

Option D is wrong because reinstalling and moving files manually is not recommended.

1449
MCQmedium

A company is migrating its SAP HANA database to AWS. The SAP HANA database requires high throughput and low latency for data persistence. Which AWS storage solution should be used for the HANA data volume to meet performance requirements?

A.Use Amazon FSx for Lustre as primary persistent storage for HANA data.
B.Use Provisioned IOPS SSD (io1 or io2) EBS volumes for the data volume.
C.Use General Purpose SSD (gp2) EBS volumes for the data volume.
D.Use Throughput Optimized HDD (st1) EBS volumes for the data volume.
AnswerB

io1/io2 volumes provide consistent low latency and high IOPS for HANA.

Why this answer

Option B is correct because SAP HANA on AWS requires high-performance storage for the data volume, and AWS recommends using Provisioned IOPS SSD (io1 or io2) EBS volumes for HANA data to ensure consistent low latency and high throughput. Option A is incorrect because General Purpose SSD (gp2) does not provide sufficient IOPS for production HANA workloads. Option C is incorrect because Throughput Optimized HDD (st1) is not suitable for database workloads due to variable performance.

Option D is incorrect because Amazon FSx for Lustre is optimized for high-performance computing, not for persistent database storage.

1450
MCQeasy

During a migration of an SAP system to AWS, the SAP application team reports that batch jobs are failing with an error 'RFC connection refused'. The on-premises system and AWS are connected via a VPN. What is the MOST likely cause?

A.The security group attached to the SAP instance does not allow inbound RFC traffic
B.The VPN bandwidth is insufficient causing timeouts
C.The network ACLs are blocking the RFC ports
D.The route table does not have a route to the on-premises network
AnswerA

Security group rules control inbound traffic to the instance.

Why this answer

Security groups act as a virtual firewall for EC2 instances. If inbound RFC ports are not allowed, connections will be refused. Option A (NACL) operates at subnet level, but SG is more common for instance-level.

Option C (Route table) is for routing, not security. Option D (Bandwidth) would cause timeouts, not immediate refusal.

1451
Multi-Selecthard

Which THREE considerations are important when designing an SAP HANA multi-node (scale-out) deployment on AWS? (Choose three.)

Select 3 answers
A.Use a cluster placement group for low-latency network.
B.Use EBS Multi-Attach to share volumes between nodes.
C.The number of nodes is limited by the instance type's network and EBS performance.
D.Use a single large EC2 instance with many vCPUs.
E.Each node should have its own EBS volume for data.
AnswersA, C, E

Placement groups ensure low latency between nodes.

Why this answer

Options A, C, and D are correct. SAP HANA multi-node requires low latency between nodes, so placement groups are recommended (A). Each node needs its own EBS volume for data and log (C).

The number of nodes is limited by the instance type's networking and EBS bandwidth (D). Option B is wrong because multi-node uses multiple instances, not a single large instance. Option E is wrong because EBS Multi-Attach is not supported for HANA; each node needs its own volume.

1452
MCQhard

An SAP system on AWS is experiencing high latency in database transactions. The SAP HANA database is running on an r5.24xlarge instance with GP3 EBS volumes. CloudWatch metrics show high Write IOPS but low Read IOPS. The application team expects high write throughput. What should be changed to improve write performance?

A.Increase the EBS read throughput
B.Use a larger instance type like r6i.32xlarge
C.Increase the GP3 volume IOPS
D.Switch to io2 Block Express volumes with higher IOPS
AnswerD

io2 provides consistent high IOPS for write-heavy workloads.

Why this answer

The correct answer is D because the workload requires high write throughput, and GP3 volumes have a baseline IOPS of 16,000 with a maximum of 16,000 IOPS at no additional cost, but burst credits are limited. io2 Block Express volumes offer up to 256,000 IOPS with consistent sub-millisecond latency, which directly addresses the high write IOPS demand without throttling. This aligns with SAP HANA's requirement for predictable, high-performance storage for database transactions.

Exam trap

The trap here is that candidates assume increasing GP3 IOPS (Option C) is sufficient, but they overlook that GP3's maximum IOPS (16,000) and throughput limits may still be inadequate for sustained high write throughput, whereas io2 Block Express is the only option that guarantees both high IOPS and low latency for SAP HANA workloads.

How to eliminate wrong answers

Option A is wrong because increasing EBS read throughput does not address high write IOPS; read throughput is irrelevant to write performance. Option B is wrong because upgrading to a larger instance type like r6i.32xlarge increases compute and memory but does not resolve EBS volume-level IOPS limitations; the bottleneck is storage, not instance capacity. Option C is wrong because GP3 volumes have a maximum IOPS of 16,000 (with additional cost up to 16,000 IOPS), which may still be insufficient for high write throughput; GP3 also has a throughput limit of 1,000 MiB/s, and increasing IOPS alone does not guarantee sustained write performance under heavy load.

1453
MCQeasy

A manufacturing company is planning to migrate a legacy inventory application from a data center to AWS. The application runs on Windows Server 2012 R2 and uses a SQL Server 2014 database. The application requires low-latency access to a shared file system for storing CAD drawings. The current on-premises environment uses a SAN-based storage array for the database and a Windows File Server for the CAD files. The company wants to minimize operational overhead and avoid refactoring the application. The migration must be completed within 3 months. The company has already established a Direct Connect connection between the data center and AWS. Which migration strategy should the company use?

A.Use AWS App2Container to containerize the Windows application and deploy it on Amazon ECS. Migrate the database to Amazon RDS for SQL Server. Use Amazon EFS for the CAD file share.
B.Use AWS Database Migration Service (DMS) to migrate the SQL Server database to Amazon RDS for SQL Server. Use AWS Server Migration Service (SMS) to replicate the Windows server to an EC2 instance. Use AWS Storage Gateway file gateway to present the CAD files from Amazon S3.
C.Use AWS Application Migration Service (AWS MGN) to replicate the Windows server to an EC2 instance. Migrate the SQL Server database using native backup and restore. Use Amazon S3 with a VPC endpoint for the CAD file share, and mount S3 as a network drive using an S3 file gateway.
D.Use AWS Application Migration Service (AWS MGN) to replicate the on-premises Windows server to an EC2 instance. Migrate the SQL Server database using native backup and restore. Use Amazon FSx for Windows File Server to replace the on-premises file server, and mount the file share via SMB.
AnswerD

This minimizes refactoring, uses a managed file service, and supports SMB protocol required by the application.

Why this answer

Option D is correct because it uses AWS Application Migration Service (AWS MGN) to lift-and-shift the Windows Server 2012 R2 instance without refactoring, native backup/restore for SQL Server 2014 to minimize complexity, and Amazon FSx for Windows File Server to provide a fully managed SMB file share with low-latency access for CAD drawings. This approach meets the 3-month timeline, avoids application refactoring, and reduces operational overhead by replacing the SAN and Windows File Server with managed AWS services.

Exam trap

The trap here is that candidates often choose Amazon EFS or S3 File Gateway for file shares, but they fail to recognize that the legacy Windows application requires SMB protocol and Windows-native features, which only Amazon FSx for Windows File Server provides without refactoring or additional complexity.

How to eliminate wrong answers

Option A is wrong because App2Container requires containerizing the application, which involves refactoring and does not meet the 'avoid refactoring' requirement; also, Amazon EFS uses NFS, not SMB, so it cannot natively replace a Windows File Server for CAD drawings without additional configuration. Option B is wrong because AWS Server Migration Service (SMS) has been deprecated and is not recommended for new migrations; additionally, AWS Storage Gateway file gateway introduces latency for low-latency CAD file access compared to a native SMB file share. Option C is wrong because mounting Amazon S3 as a network drive via S3 File Gateway uses NFS or SMB but incurs higher latency and lacks the native Windows file-sharing features (e.g., SMB protocol, Windows ACLs) required for CAD drawings; also, using a VPC endpoint for S3 does not provide a file-system interface.

1454
Multi-Selecteasy

A company is migrating an SAP system to AWS. They want to use an AWS service to automate the deployment of SAP applications according to best practices. Which TWO services can be used for this purpose? (Choose TWO.)

Select 2 answers
A.AWS OpsWorks
B.AWS Elastic Beanstalk
C.AWS CodeDeploy
D.AWS CloudFormation
E.AWS Launch Wizard
AnswersD, E

Can deploy SAP infrastructure as code.

Why this answer

AWS Launch Wizard and AWS CloudFormation can automate SAP deployments. Option B (Elastic Beanstalk) is not designed for SAP. Option C (CodeDeploy) is for application deployment, not infrastructure.

Option E (OpsWorks) is for configuration management.

1455
Multi-Selecthard

Which THREE services can be used together to implement a disaster recovery solution for SAP S/4HANA on AWS with a recovery time objective (RTO) of less than 1 hour and a recovery point objective (RPO) of less than 15 minutes?

Select 3 answers
A.SAP HANA System Replication across regions.
B.AWS CloudEndure Disaster Recovery.
C.AWS Database Migration Service (DMS) for ongoing replication.
D.Amazon S3 Glacier for long-term backups.
E.Amazon S3 for storing HANA log backups.
AnswersA, B, E

HSR provides low RPO.

Why this answer

Option A is correct: HANA System Replication provides low RPO. Option C is correct: S3 can store backups for log replay. Option D is correct: CloudEndure Disaster Recovery can replicate entire servers.

Option B is wrong because DMS doesn't support HANA. Option E is wrong because Glacier has retrieval times > 1 hour.

1456
MCQeasy

A company is migrating its SAP environment to AWS and wants to ensure that the migration complies with SAP's software licensing requirements. What is the most important consideration regarding SAP license mobility?

A.Use SAP's Bring Your Own License (BYOL) program for Amazon RDS
B.Ensure that the AWS account is linked to SAP's licensing portal
C.Purchase a new SAP license from the AWS Marketplace
D.Confirm that the SAP license agreement allows running on AWS and that the target instance types are SAP certified
AnswerD

SAP license mobility requires certification and support.

Why this answer

SAP license mobility to AWS requires that the customer has active SAP Support and that the target infrastructure meets SAP's technical requirements. Option A is correct. Option B is incorrect because AWS does not manage SAP licenses.

Option C is irrelevant; SAP does not offer a BYOL for AWS native services. Option D is partially true but the key is the support agreement.

1457
MCQeasy

A company is running SAP on AWS and wants to automate the deployment of new SAP application servers. The company uses AWS CloudFormation to manage infrastructure. Which AWS service should they use to run custom scripts during the CloudFormation stack creation to configure the SAP application?

A.AWS Systems Manager Run Command
B.AWS CodeDeploy
C.AWS Lambda
D.AWS OpsWorks
AnswerC

Lambda can be used as a custom resource in CloudFormation to run scripts.

Why this answer

Option A is correct because AWS CloudFormation supports custom resources via Lambda functions to run scripts. Option B is wrong because EC2 Run Command is not integrated into CloudFormation natively. Option C is wrong because OpsWorks is for Chef/Puppet, not directly for CloudFormation.

Option D is wrong because CodeDeploy is for code deployment, not initial configuration.

1458
MCQeasy

An SAP administrator needs to monitor the memory usage of an SAP HANA database running on an EC2 instance. The administrator wants to receive alerts when memory usage exceeds 90% for more than 5 minutes. Which AWS service should be used to set up this monitoring and alerting?

A.AWS Trusted Advisor
B.Amazon CloudWatch with custom metrics
C.AWS Config
D.AWS CloudTrail
AnswerB

CloudWatch can monitor custom metrics and trigger alarms.

Why this answer

Option B is correct because CloudWatch can collect custom metrics from the HANA instance and trigger alarms. Option A is wrong because AWS Config is for configuration compliance, not monitoring. Option C is wrong because Trusted Advisor provides best practice checks, not custom monitoring.

Option D is wrong because CloudTrail is for API auditing.

1459
MCQhard

Refer to the exhibit. A CloudFormation stack creation failed with the message 'WaitCondition received failed signal'. What is the most likely cause?

A.The security group rules are blocking the cfn-signal communication
B.The stack creation timed out after 1 hour
C.The script executed via cfn-signal failed to complete successfully
D.The EC2 instance type is not supported in the region
AnswerC

The WaitCondition expects a success signal; failure indicates script error.

Why this answer

Option A is correct because a WaitCondition fails when the expected signal from cfn-signal is not received, often due to a script error. Option B is incorrect because the signal failure is about the script, not instance size. Option C is incorrect because security groups would cause a different error.

Option D is incorrect because the error message explicitly mentions a signal failure, not a time limit.

1460
Multi-Selecthard

Which THREE of the following are best practices for operating an SAP HANA database on AWS in a production environment?

Select 3 answers
A.Configure a swap partition on the instance store.
B.Ensure the EC2 instance is EBS-optimized.
C.Separate data and log files onto different EBS volumes.
D.Use a single large EBS volume for both data and logs to simplify management.
E.Use multiple EBS volumes striped with LVM or RAID 0 for data and log files.
AnswersB, C, E

EBS-optimized instances provide dedicated network bandwidth to EBS.

Why this answer

Option A is correct because multiple EBS volumes striped with LVM or RAID 0 provide higher throughput. Option B is correct because a separate volume for log and data is recommended by SAP. Option D is correct because EBS-optimized instances provide dedicated bandwidth for EBS.

Option C is wrong because snapshotting a multi-volume database without application-consistent state can lead to corruption. Option E is wrong because swap on EC2 instance store is not recommended for HANA; HANA uses memory and swap is discouraged.

1461
MCQmedium

An SAP Basis administrator needs to monitor the health of SAP application servers running on EC2. The administrator wants to receive alerts when a server becomes unreachable or when critical SAP processes stop. Which AWS service should be used to create a custom dashboard and set up alarms?

A.AWS CloudTrail
B.Amazon CloudWatch
C.AWS Config
D.AWS Trusted Advisor
AnswerB

CloudWatch monitors instances and can trigger alarms on metrics like status checks or custom process metrics.

Why this answer

Option B is correct because CloudWatch can monitor EC2 instances and create alarms based on custom metrics, including process status. Option A is wrong because CloudTrail is for auditing API calls. Option C is wrong because Config is for resource compliance.

Option D is wrong because Trusted Advisor provides best-practice checks but not custom monitoring.

1462
MCQhard

A company is migrating an SAP HANA system from on-premises to AWS. The HANA system uses a large amount of memory (2 TB). Which EC2 instance type is most suitable for this workload?

A.x2iedn.32xlarge
B.c5n.18xlarge
C.m5n.24xlarge
D.r5.24xlarge
AnswerA

x2iedn.32xlarge has 4 TB memory, suitable.

Why this answer

Option B is correct because the x2iedn instance type is memory-optimized and can support up to 4 TB of memory, making it suitable for large HANA systems. Option A is wrong because r5 instances have less memory (max 768 GB). Option C is wrong because c5 instances are compute-optimized.

Option D is wrong because m5 instances are general-purpose.

1463
MCQmedium

A company is migrating an SAP HANA database to AWS using the SAP HANA System Replication (HSR) with asynchronous mode. The database size is 5 TB. The migration must be completed within 8 hours. Which AWS resource is most critical to ensure the initial data synchronization completes within the time window?

A.EC2 instance with high network bandwidth and Enhanced Networking
B.EBS snapshots for the initial data copy
C.EBS gp3 volumes with sufficient IOPS
D.Amazon S3 multipart upload for initial data
AnswerA

HSR initial sync is network-bound; high bandwidth instances reduce sync time.

Why this answer

Option B is correct. The initial sync requires high network throughput; using an instance with high network bandwidth (e.g., ENA, up to 100 Gbps) is critical. Option A (EBS gp3 volume) is important but secondary to network.

Option C (EBS snapshots) are not used in HSR. Option D (S3 multipart upload) is irrelevant.

1464
MCQmedium

An SAP Basis administrator is troubleshooting a performance issue on an SAP HANA database running on AWS. The database is on an EC2 instance of type r5.12xlarge with 8 x 1 TB EBS io2 Block Express volumes configured for maximum IOPS. The application team reports that batch jobs are taking longer than expected. The administrator checks Amazon CloudWatch metrics and sees that the EBS write latency averages 2 ms, which is within the expected range. However, the CPU utilization is at 95% consistently during batch runs. The HANA index server is using 70% of the CPU. The administrator also notices that the HANA threads are mostly waiting on 'lock wait' events. What is the MOST likely cause of the performance issue?

A.The EBS volumes are not providing enough IOPS for the workload.
B.The HANA parameter 'max_concurrency' is set too low.
C.There are SQL statement contention and locking issues in the HANA database.
D.The EC2 instance type is undersized for the HANA workload.
AnswerC

Lock waits indicate contention, often from poor SQL or application design.

Why this answer

The high CPU utilization (95%) combined with HANA threads waiting on 'lock wait' events indicates that SQL statement contention and locking issues are the primary bottleneck. Lock waits occur when multiple transactions compete for the same database resources, causing threads to spin or block, which consumes CPU cycles without making progress. This explains why CPU is saturated despite EBS write latency being normal (2 ms) and IOPS being sufficient.

Exam trap

The trap here is that candidates may attribute high CPU utilization to an undersized instance or insufficient IOPS, when in fact the CPU is busy spinning on lock waits, a classic symptom of application-level contention rather than infrastructure limits.

How to eliminate wrong answers

Option A is wrong because EBS write latency is only 2 ms, which is well within the expected range for io2 Block Express volumes, and the volumes are configured for maximum IOPS, so IOPS is not the bottleneck. Option B is wrong because 'max_concurrency' controls the number of parallel query execution threads, but lock waits are caused by contention on database objects (e.g., rows, tables), not by a limit on concurrency; lowering max_concurrency would reduce parallelism but not resolve lock contention. Option D is wrong because an r5.12xlarge instance provides 48 vCPUs and 384 GB of memory, which is a standard size for SAP HANA workloads, and the CPU is being fully utilized due to lock contention rather than being undersized for the workload.

1465
MCQhard

An SAP administrator notices that the SAP application server performance degrades during peak hours. The application servers are running on EC2 instances with gp2 EBS volumes. The administrator suspects the EBS volumes are experiencing burst bucket depletion. Which action should the administrator take to improve performance?

A.Change the volume type to gp3 and adjust the IOPS and throughput settings.
B.Increase the size of the gp2 volumes to increase the baseline IOPS.
C.Move the data to instance store volumes for better performance.
D.Change the volume type to io1 and provision high IOPS.
AnswerA

gp3 provides baseline performance without burst credits.

Why this answer

Option C is correct because changing the volume type to gp3 provides baseline performance without burst credits, eliminating burst bucket depletion. Option A is wrong because gp2 volumes still use burst credits. Option B is wrong because Provisioned IOPS is more expensive and may not be needed.

Option D is wrong because instance store volumes are ephemeral and not suitable for persistent data.

1466
MCQeasy

Refer to the exhibit. An SAP administrator is configuring Route 53 to point a custom domain name to an Application Load Balancer (ALB) that fronts SAP Web Dispatchers. The record set is configured as shown. However, when users access sap.example.com, they receive a 503 error. What is the MOST likely cause?

A.The EvaluateTargetHealth is set to true, which is causing the record to be marked as unhealthy.
B.The security group for the ALB is not allowing inbound traffic on port 443 from the internet.
C.The Alias Target is incorrect; it should be the ALB's DNS name without 'dualstack'.
D.The health check for the ALB target group is failing, causing Route 53 to return 503.
AnswerB

If the security group blocks traffic, the ALB will return 503 errors because it cannot forward requests to targets.

Why this answer

Option D is correct because the ALB's security group must allow inbound traffic on port 443 from the internet. Option A is wrong because the Alias record is correctly configured for an ALB. Option B is wrong because EvaluateTargetHealth is set to true, which is fine.

Option C is wrong because the ALB health checks are separate from Route 53 health checks.

1467
MCQhard

An SAP system on AWS is experiencing performance degradation. Amazon CloudWatch metrics show high CPU utilization on the application server, but the database server (RDS) metrics are normal. The application team suspects a memory leak. Which action should the operations team take FIRST to confirm the issue?

A.Review the existing CloudWatch CPU utilization and memory metrics for the application server.
B.Install the CloudWatch agent on the application server and enable memory metrics.
C.Reboot the application server and monitor performance after reboot.
D.Increase the instance size of the application server to handle the load.
AnswerB

Installing the agent allows collection of memory metrics, which can confirm a memory leak.

Why this answer

Option B is correct because CloudWatch cannot see inside the OS without the CloudWatch agent. Installing the agent and collecting memory metrics is the first step to confirm a memory leak. Option A is wrong because CloudWatch does not provide memory metrics by default.

Option C is wrong because rebooting is disruptive and does not help diagnose. Option D is wrong because switching to a larger instance is a reactive fix, not diagnostic.

1468
MCQmedium

An SAP administrator wants to automate the creation of a DR environment for SAP HANA on AWS. The DR site should be in a different region and must be started only during a disaster. Which AWS service should be used to orchestrate the DR process?

A.AWS Systems Manager Automation to run DR scripts.
B.AWS CloudFormation StackSets to deploy the environment in the DR region.
C.Amazon S3 Cross-Region Replication to replicate SAP application data.
D.AWS Elastic Disaster Recovery (DRS) to replicate and orchestrate failover.
AnswerD

Elastic Disaster Recovery provides automated replication and orchestrated failover.

Why this answer

AWS Elastic Disaster Recovery (DRS) is the correct service because it provides continuous block-level replication for SAP HANA servers and includes built-in orchestration for failover and failback. This allows the DR environment to remain stopped until a disaster occurs, minimizing costs while ensuring rapid recovery.

Exam trap

The trap here is that candidates often confuse infrastructure deployment (CloudFormation) or data replication (S3 CRR) with the need for a fully orchestrated DR solution that includes both replication and automated failover, which only AWS DRS provides.

How to eliminate wrong answers

Option A is wrong because AWS Systems Manager Automation is designed for operational tasks like patching and configuration, not for orchestrating full DR failover with continuous replication and automated recovery. Option B is wrong because AWS CloudFormation StackSets deploy infrastructure templates across multiple accounts/regions but do not handle data replication, state management, or the orchestrated failover process required for SAP HANA DR. Option C is wrong because Amazon S3 Cross-Region Replication only replicates objects in S3 buckets, not the block-level storage volumes or SAP HANA database files needed for a complete DR environment.

1469
Matchingmedium

Match the AWS service to its primary use in an SAP environment.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Shared file storage for SAP NetWeaver

High-performance NFS for SAP HANA

Centralized backup management for SAP workloads

DNS resolution for SAP systems

Why these pairings

These AWS services commonly support SAP infrastructure.

1470
MCQeasy

A company runs a production EC2 instance that experiences intermittent connectivity issues. The instance is part of an Auto Scaling group behind an Application Load Balancer. Which step should be taken FIRST to diagnose the issue?

A.Modify the security group to allow all traffic temporarily
B.Review CloudWatch metrics for the instance and the ALB target group
C.Terminate the instance and let Auto Scaling launch a new one
D.Attach an additional Elastic Network Interface (ENI) to the instance
AnswerB

CloudWatch metrics provide baseline data for troubleshooting connectivity issues.

Why this answer

Reviewing CloudWatch metrics for the instance and the ALB target group is the correct first step because it provides immediate visibility into the root cause of intermittent connectivity issues. Metrics such as TargetResponseTime, RequestCount, and HealthyHostCount can reveal whether the problem is due to high latency, request failures, or the instance being marked unhealthy by the ALB health checks. This data-driven approach avoids unnecessary changes and aligns with the AWS Well-Architected Framework's principle of observability.

Exam trap

The trap here is that candidates often jump to reactive actions like terminating the instance or modifying security groups, failing to recognize that CloudWatch metrics provide the non-invasive, systematic starting point for diagnosing intermittent issues in an Auto Scaling group behind an ALB.

How to eliminate wrong answers

Option A is wrong because modifying the security group to allow all traffic temporarily bypasses security controls without providing diagnostic information; connectivity issues are rarely caused by overly restrictive security groups in a production environment, and this action could introduce a security risk. Option C is wrong because terminating the instance and letting Auto Scaling launch a new one is a reactive, disruptive action that destroys the evidence needed to diagnose the intermittent issue, and it does not address the underlying cause. Option D is wrong because attaching an additional Elastic Network Interface (ENI) to the instance adds complexity and does not help diagnose connectivity problems; it is typically used for specialized networking scenarios like dual-homed instances or network appliances, not for troubleshooting intermittent ALB connectivity.

1471
MCQhard

An administrator runs the command shown in the exhibit to check the status of an EBS volume attached to an SAP HANA instance. The volume is 200 GB gp3 and is attached to instance i-0a1b2c3d4e5f67890. The administrator wants to increase the I/O performance. The volume is currently set to 3000 IOPS (baseline for gp3). Which action will increase IOPS without downtime?

A.Modify the volume's IOPS setting to a higher value (e.g., 6000) using the modify-volume API.
B.Detach the volume, increase the size to 500 GB, and reattach.
C.Modify the volume type to io2 Block Express and increase IOPS.
D.Take a snapshot of the volume and create a new volume with higher IOPS from the snapshot.
AnswerA

gp3 supports modifying IOPS without downtime.

Why this answer

Option B is correct because gp3 volumes allow modifying IOPS independently of size without detaching. Option A is wrong because modifying volume type to io2 would require detaching or stopping instance. Option C is wrong because detaching the volume causes downtime.

Option D is wrong because taking a snapshot does not increase IOPS.

1472
MCQhard

A company is migrating a legacy SAP ECC 6.0 system to SAP S/4HANA on AWS. The current database is IBM Db2. Which AWS service should be used to assess the source system and plan the migration?

A.AWS Migration Evaluator
B.AWS Application Discovery Service
C.AWS CloudEndure Migration
D.AWS Database Migration Service (DMS)
AnswerA

It provides business case analysis for SAP migrations.

Why this answer

Option B is correct because AWS Migration Evaluator (formerly TSO Logic) provides data-driven business cases for migration, including SAP systems. Option A is wrong because AWS Application Discovery Service is for server-level discovery, not SAP-specific assessment. Option C is wrong because AWS DMS is for database migration, not assessment.

Option D is wrong because AWS CloudEndure Migration is for lift-and-shift, not SAP-specific assessment.

1473
Multi-Selectmedium

Which TWO of the following are valid methods to monitor the health of an SAP HANA database running on AWS?

Select 2 answers
A.Amazon CloudWatch alarms based on EC2 instance metrics
B.AWS Trusted Advisor checks for HANA best practices
C.AWS Config rules to check HANA configuration
D.SAP HANA SQL queries to check service status
E.AWS CloudTrail logs for HANA API calls
AnswersA, D

CloudWatch can monitor OS-level metrics of the HANA instance.

Why this answer

Option A is correct because CloudWatch can monitor EC2 instance metrics like CPU and memory. Option D is correct because SAP HANA provides built-in SQL queries for health checks. Option B is wrong because AWS Config is for configuration tracking, not real-time health.

Option C is wrong because CloudTrail is for API auditing. Option E is wrong because Trusted Advisor does not monitor HANA-specific health.

1474
Multi-Selecteasy

An SAP system administrator needs to monitor the health of Amazon RDS for SAP ASE database instances. Which TWO CloudWatch metrics should be used to detect if the database is under memory pressure?

Select 2 answers
A.`WriteIOPS`
B.`ReadIOPS`
C.`FreeableMemory`
D.`SwapUsage`
E.`DatabaseConnections`
AnswersC, D

Low freeable memory indicates the database is using most of the available memory.

Why this answer

`FreeableMemory` shows available memory, and `SwapUsage` indicates memory pressure when swap is used.

1475
Multi-Selecthard

Which THREE factors should be considered when choosing an EC2 instance type for an SAP HANA production system? (Choose three.)

Select 3 answers
A.The instance type must be certified by SAP for HANA.
B.The instance type should include instance store volumes for data persistence.
C.The instance must include GPU acceleration for HANA operations.
D.The instance must have enough memory to accommodate the HANA database.
E.The instance should provide high network bandwidth for replication and client access.
AnswersA, D, E

Only certified instances are supported for production HANA.

Why this answer

Options A, C, and D are correct. SAP HANA requires certified instance types (A), sufficient memory (C), and high network bandwidth (D). Option B is wrong because HANA uses dedicated storage, not instance store.

Option E is wrong because GPU is not required for standard HANA.

1476
Multi-Selectmedium

A company is running SAP HANA on AWS and wants to implement a disaster recovery strategy with a Recovery Point Objective (RPO) of 15 minutes and a Recovery Time Objective (RTO) of 2 hours. The primary site is in us-east-1, and the DR site is in us-west-2. Which two actions should the company take to meet these objectives? (Choose TWO.)

Select 2 answers
A.Set up SAP HANA System Replication (HSR) in async mode between the two regions.
B.Take daily snapshots of the HANA volumes and copy them to the DR region.
C.Use AWS CloudEndure Disaster Recovery to replicate the entire server.
D.Use AWS Backup to schedule cross-region backups of the HANA database.
E.Pre-configure EC2 instances in the DR region with the same SAP HANA software and configuration.
AnswersA, E

HSR with async mode provides low RPO.

Why this answer

Option B is correct because HANA System Replication with log replication can achieve an RPO of less than 15 minutes. Option D is correct because having pre-configured EC2 instances in the DR region reduces RTO. Option A is wrong because daily backups are too slow for 15-minute RPO.

Option C is wrong because CloudEndure Disaster Recovery is not optimized for SAP HANA. Option E is wrong because AWS Backup does not support HANA replication.

1477
Matchingmedium

Match the SAP system type to its typical AWS deployment pattern.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Single small instance, no HA

Medium instances, minimal redundancy

Medium instances, some HA

Large instances, multi-AZ, HA and DR

Why these pairings

SAP landscape tiers have different size and availability requirements.

1478
Multi-Selecteasy

Which TWO are best practices for designing high availability for SAP NetWeaver on AWS? (Choose two.)

Select 2 answers
A.Use T2 or T3 burstable instances for cost savings.
B.Deploy SAP ASCS and PAS instances in separate Availability Zones.
C.Use EBS Multi-Attach volumes for the SAP application data.
D.Configure multiple Application Load Balancers in a failover configuration.
E.Use an Elastic Load Balancer to distribute traffic to multiple Web Dispatchers.
AnswersB, E

Multiple AZs provide failover if one AZ becomes unavailable.

Why this answer

Deploying SAP ASCS (ABAP SAP Central Services) and PAS (Primary Application Server) instances in separate Availability Zones ensures that if one AZ fails, the other can continue processing, providing high availability. This aligns with AWS best practices for SAP NetWeaver, which recommend distributing critical SAP components across AZs to achieve a Recovery Time Objective (RTO) of minutes and a Recovery Point Objective (RPO) of near-zero using SAP enqueue replication and failover mechanisms.

Exam trap

The trap here is that candidates often confuse high availability with cost optimization or assume that burstable instances are suitable for SAP production workloads, ignoring SAP's strict performance and certification requirements.

1479
MCQmedium

An SAP administrator is migrating an on-premises SAP system to AWS using this IAM policy. When attempting to launch a new EC2 instance from an AMI stored in the S3 bucket, the launch fails. What is the likely cause?

A.The policy does not allow stopping or starting instances.
B.The IAM policy does not include ec2:RunInstances.
C.The S3 bucket policy does not allow reading the AMI object.
D.The policy does not allow describing EC2 instances.
AnswerB

RunInstances is required to launch instances.

Why this answer

The policy lacks ec2:RunInstances, which is required to launch new EC2 instances. Option A is wrong because the policy allows s3:GetObject. Option C is wrong because the policy allows ec2:DescribeInstances.

Option D is wrong because the policy allows ec2:StartInstances and ec2:StopInstances, but not RunInstances.

1480
MCQhard

An SAP system uses a shared file system mounted via EFS from multiple EC2 instances. The operations team notices that the file system is not performing well during peak loads. What is the most effective way to improve throughput without changing the application?

A.Enable Provisioned Throughput on the EFS file system
B.Replace EFS with an EBS Multi-Attach volume
C.Migrate the file system to Amazon FSx for Lustre
D.Change the EFS performance mode from General Purpose to Max I/O
AnswerD

Max I/O mode is optimized for high throughput and parallel access.

Why this answer

Option B is correct because EFS performance mode can be set to 'max I/O' to increase throughput for parallel workloads. Option A is wrong because Provisioned Throughput is independent of General Purpose vs Max I/O. Option C is wrong because moving to FSx for Lustre is a different architecture.

Option D is wrong because EBS is block storage and not suitable for shared access across multiple instances.

1481
Multi-Selecthard

A company is using AWS Systems Manager Patch Manager to patch a fleet of EC2 instances. The instances are in a patch group and have the SSM Agent installed. After a patching operation, the operations team notices that some instances did not apply the patches. The instances show a status of 'Failed' in the Patch Manager console. Which TWO steps should the team take to troubleshoot and resolve the issue? (Choose TWO.)

Select 2 answers
A.Assign the patch baseline to the instance IDs directly.
B.Ensure that the instances have the appropriate IAM role that allows them to be patched.
C.Verify that the SSM Agent on the failed instances is running and is able to communicate with the Systems Manager service.
D.Check the output of the AWS-RunPatchBaseline SSM document in the Systems Manager Run Command history for the failed instances.
E.Configure a Maintenance Window for the patching operation.
AnswersC, D

The SSM Agent must be online to execute patching commands.

Why this answer

Option C is correct because if the SSM Agent is not running or cannot communicate with the AWS Systems Manager service, Patch Manager cannot execute the patching commands. The agent must be in a healthy state and have network connectivity (e.g., via VPC endpoints or internet gateway) to receive the patch baseline and report status. Option D is correct because the AWS-RunPatchBashelline SSM document execution history in Run Command provides detailed logs and error messages for each instance, allowing the team to identify why the patching failed, such as missing dependencies or timeout issues.

Exam trap

The trap here is that candidates may assume the IAM role (Option B) is the primary cause of failure, but the question already indicates the SSM Agent is installed and the instances show a 'Failed' status, which often points to agent communication or execution errors rather than missing permissions.

1482
MCQmedium

A company is running SAP on AWS and wants to implement a patching strategy for the operating system of EC2 instances with minimal downtime. The instances are part of an Auto Scaling group. Which of the following approaches is the MOST appropriate?

A.Apply patches directly to the running instances using AWS Systems Manager Patch Manager and reboot each instance one at a time.
B.Stop the Auto Scaling group, patch the instances, and start the group again.
C.Use AWS Systems Manager Patch Manager to patch all instances at the same time during a maintenance window.
D.Create a new Amazon Machine Image (AMI) with the latest patches, update the launch configuration, and perform a rolling update of the Auto Scaling group.
AnswerD

This approach replaces instances with patched ones without downtime as the Auto Scaling group launches new instances before terminating old ones.

Why this answer

Option D is correct because using a rolling update with a new launch configuration ensures that instances are replaced with patched AMIs without downtime. Option A is wrong because applying patches directly to running instances requires reboots and causes downtime. Option B is wrong because stopping the Auto Scaling group would stop all instances.

Option C is wrong because using Systems Manager Patch Manager on all instances simultaneously would cause downtime.

1483
MCQhard

An SAP HANA database is running on an EC2 instance with 16 EBS volumes in a striped RAID 0 configuration. The system administrator notices that one of the volumes is degraded in the RAID array. How can the administrator recover the array with minimal downtime?

A.Detach the degraded volume, create a new volume of the same size and type, attach it to the instance, and add it to the RAID array.
B.Detach the degraded volume and attach a new volume with the same device name.
C.Take a snapshot of the degraded volume and restore it to a new volume.
D.Run a filesystem repair on the degraded volume while it is still attached.
AnswerA

C is correct: this is the standard procedure for replacing a failed disk in a RAID array.

Why this answer

Option C is correct: Detach the degraded volume, replace it with a new volume, and re-add it to the RAID array. Option A is incorrect because you cannot repair a physical volume. Option B is incorrect because you cannot replace an attached volume.

Option D is incorrect because snapshots are not needed for a degraded volume.

1484
MCQhard

A company is migrating its SAP production system to AWS and needs to ensure that the migration does not exceed the allowed downtime window of 4 hours. The source database is 5 TB. Which migration strategy should be used?

A.Homogeneous migration using AWS Schema Conversion Tool (SCT) and AWS DMS
B.Heterogeneous migration using AWS DMS with ongoing replication
C.AWS Snowball Edge for offline data transfer
D.AWS Application Migration Service (MGN) replication
AnswerB

DMS with ongoing replication minimizes downtime.

Why this answer

Heterogeneous migration using AWS DMS with ongoing replication allows near-zero downtime. Option A is wrong because Homogeneous migration with AWS SCT and DMS still requires schema conversion, but may take longer. Option B is wrong because AWS MGN is for server migration, not database.

Option D is wrong because AWS Snowball is for offline data transfer, not suitable for 4-hour window.

1485
MCQhard

A company runs SAP S/4HANA on AWS using an ASCS and PAS cluster with SUSE Linux Enterprise Server. The cluster fails over unexpectedly several times a day. What is the most likely cause and solution?

A.High network latency between nodes; use placement groups
B.Cluster quorum loss due to insufficient votes; add a third node or configure a witness
C.Insufficient memory on the cluster nodes; increase memory
D.Incorrect ASCS instance configuration; verify SAP profiles
AnswerB

Quorum loss triggers failover; adding a node stabilizes the cluster.

Why this answer

Option D is correct because cluster quorum loss causes unnecessary failovers, and adding a third node resolves it. Option A is wrong as memory is not a typical cause. Option B is wrong because network latency wouldn't cause frequent failovers.

Option C is wrong because disk I/O doesn't cause failovers.

1486
MCQmedium

Refer to the exhibit. An SAP administrator checks the configuration of an EBS volume. The volume is attached to an SAP HANA instance. What is the potential performance bottleneck?

A.The IOPS and throughput are too low for SAP HANA
B.The volume is attached to an instance in a different Availability Zone
C.The DeleteOnTermination flag is set to false
D.The volume is not encrypted
AnswerA

SAP HANA typically requires higher IOPS and throughput than gp3 baseline.

Why this answer

The volume type is gp3 with 3000 IOPS and 125 MB/s throughput. SAP HANA requires high IOPS and throughput. With only 3000 IOPS and 125 MB/s, this volume may be a bottleneck for production HANA workloads.

The DeleteOnTermination setting is not a performance issue. The size and snapshot are not immediate concerns.

1487
MCQmedium

A company is deploying SAP S/4HANA on AWS and needs to ensure that the system can be recovered within 4 hours in case of a disaster in the primary region. The secondary region is in a different AWS region. Which approach should be used to meet the recovery time objective (RTO)?

A.Configure SAP HANA system replication to a secondary region with a pre-provisioned standby instance
B.Use cross-region EBS snapshots and restore them in the secondary region
C.Back up SAP HANA to Amazon S3 and restore in the secondary region
D.Set up a pilot light environment using application-level replication
AnswerA

HANA system replication with pre-provisioned standby allows fast failover, potentially within minutes, meeting the RTO.

Why this answer

Replicating SAP HANA to a standby instance in another region using HANA system replication with pre-provisioned infrastructure allows fast failover. Cross-region EBS snapshots take time to restore. Backup and restore from S3 may be slower.

Pilot light with application-level replication is not sufficient for HANA.

1488
MCQeasy

A company is migrating an application to AWS and creates the IAM policy shown in the exhibit. The policy is attached to an IAM user responsible for managing EC2 instances. Which additional permission must be added to allow the user to create new EC2 instances?

A.ec2:RunInstances
B.ec2:DescribeImages
C.ec2:CreateTags
D.ec2:AllocateAddress
AnswerA

Required to create EC2 instances.

Why this answer

The policy allows Describe, Start, and Stop actions but not RunInstances. Option A (ec2:RunInstances) is required to create instances. Option B (ec2:CreateTags) is for tagging.

Option C (ec2:DescribeImages) is for viewing AMIs. Option D (ec2:AllocateAddress) is for Elastic IPs.

1489
MCQeasy

An IAM policy is attached to a user. The user attempts to upload a file to s3://my-bucket/restricted/data.txt. What is the outcome?

A.The upload succeeds because there is no explicit Deny for the specific object.
B.The upload succeeds because the Allow statement for s3:GetObject implies PutObject.
C.The upload fails because the explicit Deny overrides the Allow.
D.The upload succeeds because the Allow for s3:GetObject is on all resources.
AnswerC

Explicit Deny always overrides Allow.

Why this answer

C is correct because IAM policy evaluation follows a default-deny model where an explicit Deny always overrides any Allow. Even though the user has an Allow for s3:GetObject on all resources, the explicit Deny for the specific object path s3://my-bucket/restricted/* takes precedence, causing the upload (which requires s3:PutObject) to fail.

Exam trap

Cisco often tests the misconception that an Allow on one action (like s3:GetObject) somehow implies or grants permissions for other actions (like s3:PutObject), or that the absence of an explicit Deny means the request will succeed, ignoring the explicit Deny's overriding effect.

How to eliminate wrong answers

Option A is wrong because the absence of an explicit Deny for the specific object does not guarantee success; the default implicit deny would block the action if no Allow applies, but here an explicit Deny exists for the prefix. Option B is wrong because s3:GetObject does not imply s3:PutObject; they are distinct actions with separate permissions, and the Allow for GetObject does not grant upload rights. Option D is wrong because the Allow for s3:GetObject on all resources does not cover the s3:PutObject action required for uploading, and the explicit Deny overrides any Allow regardless of resource scope.

1490
MCQmedium

A company runs SAP on AWS with an SAP HANA database on a single EC2 instance. They want to implement a disaster recovery solution with a recovery time objective (RTO) of 15 minutes and a recovery point objective (RPO) of 1 hour. The DR site is in a different AWS Region. Which approach meets these requirements?

A.Set up an automated process to copy the EC2 instance AMI to the DR Region every hour.
B.Use Amazon S3 Cross-Region Replication to replicate the HANA data directory to the DR Region.
C.Perform periodic HANA database backups to S3 and restore in the DR Region when needed.
D.Configure SAP HANA System Replication to a secondary instance in the DR Region and use automated EBS snapshots for cross-Region replication.
AnswerD

HANA System Replication plus cross-Region snapshots meets RPO and RTO.

Why this answer

Option D is correct because SAP HANA System Replication with HANA Backup/Restore using cross-Region EBS snapshots can achieve RPO of 1 hour and RTO of 15 minutes if automated. Option A is wrong because copying AMIs every hour may not achieve RPO consistently and RTO may be longer. Option B is wrong because S3 versioning does not provide database-level replication.

Option C is wrong because manual restore from backup cannot achieve 15-minute RTO.

1491
Multi-Selecthard

Which THREE are valid steps when performing a cross-Region disaster recovery failover for SAP HANA using AWS? (Choose THREE.)

Select 3 answers
A.Create an EBS snapshot of the primary database volume
B.Start the SAP HANA database on the secondary instance
C.Stop the SAP HANA database on the primary instance
D.Configure SAP HANA System Replication (HSR) between primary and secondary Regions
E.Update DNS records to point to the secondary instance
AnswersB, D, E

The secondary database must be started to serve requests.

Why this answer

Option B is correct because starting the SAP HANA database on the secondary instance is a required step during a cross-Region disaster recovery failover. After promoting the secondary system replication target to primary, the SAP HANA database must be started to make it available for client connections and resume operations.

Exam trap

The trap here is that candidates may mistakenly think creating EBS snapshots is a valid DR failover step, but snapshots are for backup and not part of the SAP HANA System Replication failover process, which relies on log-based replication instead.

1492
MCQeasy

A company wants to migrate a 50 TB SAP HANA database to AWS with minimal downtime. Which migration approach should be used?

A.Configure SAP HANA System Replication (HSR) between source and target.
B.Export the database to a file and upload to Amazon S3, then restore on RDS for HANA.
C.Use AWS SCT to convert the HANA schema to Aurora.
D.Use AWS DMS with ongoing replication from HANA to HANA.
AnswerA

HSR provides near-zero downtime replication.

Why this answer

Option D is correct because SAP HANA system replication with HSR provides near-zero downtime and is the recommended approach for large HANA databases. Option A is wrong because DMS does not support SAP HANA as a source. Option B is wrong because it requires significant downtime.

Option C is wrong because SCT is for schema conversion, not HANA.

1493
MCQeasy

A company plans to migrate its SAP systems to AWS and needs to set up a secure connection to the corporate data center. The company requires consistent network performance and low latency. Which AWS service should be used?

A.AWS Transit Gateway
B.AWS Site-to-Site VPN
C.AWS Direct Connect
D.AWS Client VPN
AnswerC

Direct Connect provides a dedicated, consistent network connection with low latency.

Why this answer

Option D is correct because AWS Direct Connect provides a dedicated network connection with consistent performance. Option A is wrong because a VPN over the internet may have variable performance. Option B is wrong because AWS Client VPN is for individual clients.

Option C is wrong because AWS Transit Gateway is a network hub, not a connection.

1494
MCQmedium

A company runs SAP HANA on AWS and needs to perform a backup of the HANA database to Amazon S3. Which AWS service should be used to orchestrate the backup and ensure consistency?

A.AWS Backup with pre- and post-backup scripts for application-consistent backups.
B.Amazon S3 Lifecycle policies to transition backups to Glacier.
C.Amazon Data Lifecycle Manager (DLM) to schedule EBS snapshots.
D.AWS Storage Gateway file gateway to back up to S3.
AnswerA

AWS Backup can orchestrate HANA backups.

Why this answer

Option B is correct because AWS Backup supports SAP HANA on EC2 with pre- and post-scripts for consistency. Option A is wrong because S3 Lifecycle policies manage object lifecycle, not backups. Option C is wrong because DLM manages EBS snapshots, not application-consistent backups.

Option D is wrong because Storage Gateway is for hybrid storage, not SAP HANA backups.

1495
MCQeasy

A company runs SAP Business Suite on AWS. The database size is 2 TB. They need to restore the database to a point-in-time from the last 24 hours. Which AWS service should be used to achieve this with minimal impact on production performance?

A.Use AWS Backup with a backup plan for the EC2 instance.
B.Use Amazon EBS snapshots of the database volume.
C.Configure SAP HANA Backup & Recovery using Backint agent to Amazon S3.
D.Use AWS Database Migration Service (DMS) for continuous replication.
AnswerC

Backint allows online backups to S3 with point-in-time recovery.

Why this answer

Option C is correct because SAP HANA Backup & Recovery using the Backint agent to Amazon S3 is the native, AWS-integrated method for performing point-in-time recovery (PITR) of SAP HANA databases. Backint offloads backup and restore operations directly to S3, bypassing the EC2 instance's I/O stack, which minimizes performance impact on production workloads. This approach supports incremental and log backups, enabling precise PITR within the last 24 hours without requiring full-volume snapshots.

Exam trap

The trap here is that candidates often confuse crash-consistent EBS snapshots (Option B) with application-consistent backups, failing to recognize that SAP HANA requires log-based PITR via Backint to avoid database corruption and minimize production impact.

How to eliminate wrong answers

Option A is wrong because AWS Backup for EC2 instances performs full machine-level backups, which are not database-consistent for SAP HANA without pre- and post-scripts, and cannot provide granular point-in-time recovery at the database level. Option B is wrong because Amazon EBS snapshots capture the entire volume state, but they are crash-consistent, not application-consistent, and restoring a 2 TB database from snapshots would require stopping the database and could take hours, causing significant production impact. Option D is wrong because AWS Database Migration Service (DMS) is designed for continuous replication and migration between database engines, not for native SAP HANA backup and restore; it does not support point-in-time recovery of SAP HANA databases and would introduce latency and schema conversion issues.

1496
MCQmedium

A company is migrating a large SAP HANA workload to AWS. They need to ensure the fastest network throughput for data transfer between on-premises and AWS. Which AWS service or feature should they use?

A.AWS Snowball Edge
B.AWS Site-to-Site VPN
C.AWS Direct Connect
D.AWS Client VPN
AnswerC

Direct Connect provides dedicated, high-speed connectivity for large data transfers.

Why this answer

AWS Direct Connect provides a dedicated network connection for consistent high throughput. Option A is wrong because Site-to-Site VPN uses internet and may have variable performance. Option C is wrong because Snowball Edge is for offline data transfer, not real-time.

Option D is wrong because Client VPN is for individual user connections.

1497
Multi-Selecteasy

Which TWO AWS services can be used to automate the backup of SAP HANA databases? (Choose two.)

Select 2 answers
A.AWS Lambda
B.AWS Storage Gateway
C.Amazon EBS Snapshots
D.Amazon S3
E.AWS Backup
AnswersC, E

EBS Snapshots can be automated using lifecycle policies.

Why this answer

Options B and D are correct. AWS Backup can automate backup of EBS volumes, and Amazon EBS Snapshots can be automated via scripts. Option A is wrong because AWS Lambda can run scripts but is not a backup service.

Option C is wrong because Amazon S3 is storage, not a backup automation service. Option E is wrong because AWS Storage Gateway is for hybrid storage.

1498
Multi-Selectmedium

A company is migrating its SAP landscape to AWS. They need to choose a migration method for each system. Which TWO factors are most important to consider when selecting a migration method for SAP systems? (Choose TWO.)

Select 2 answers
A.Total cost of migration
B.Frequency of database backups
C.Source and target platform (OS, DB)
D.Number of SAP users
E.SAP release and database version
AnswersC, E

Affects tool choice (e.g., HSR for HANA).

Why this answer

Option A is correct because the SAP release and database version determine compatibility with AWS services. Option C is correct because the source and target platforms (OS, DB) affect migration tools. Option B is incorrect because the number of users is less relevant.

Option D is incorrect because cost is important but not a primary technical factor for method selection. Option E is incorrect because backup frequency is not a key factor for method selection.

1499
MCQmedium

Refer to the exhibit. An SAP administrator is reviewing the EBS volume configuration for a SAP HANA /hana/data volume. The volume is 500 GB gp2 with DeleteOnTermination set to false. The instance is in us-east-1a. Which action should the administrator take to improve performance for SAP HANA?

A.Take a snapshot and create a new volume in us-east-1b.
B.Enable encryption on the volume.
C.Modify the volume to gp3 and provision 5000 IOPS.
D.Set DeleteOnTermination to true.
AnswerC

gp3 allows provisioning higher IOPS independently of size.

Why this answer

SAP HANA requires a minimum of 5000 IOPS for /hana/data. The gp2 volume provides 1500 IOPS (3 IOPS per GB). The administrator should either increase the volume size to at least 1667 GB to get 5000 IOPS, or change to gp3 with provisioned IOPS of 5000 or more.

The best practice for SAP HANA is to use multiple volumes in RAID 0, but the question asks about improving performance for this volume. Changing to gp3 with higher IOPS is a direct improvement.

1500
Multi-Selectmedium

A company runs SAP on AWS and needs to implement a disaster recovery (DR) strategy that meets a Recovery Point Objective (RPO) of 15 minutes and a Recovery Time Objective (RTO) of 2 hours. The DR region must have the SAP application stack ready but the database can be replayed from backups. Which TWO actions should be taken to meet these requirements? (Choose two.)

Select 2 answers
A.Use a single-region Multi-AZ deployment for the database.
B.Use S3 cross-region replication for the application log files.
C.Set up a cross-region read replica for the Aurora PostgreSQL database.
D.Take daily snapshots of the database and copy them to the DR region.
E.Pre-provision EC2 instances with the SAP application stack in the DR region.
AnswersC, E

Cross-region read replicas provide low RPO (usually seconds) and can be promoted quickly.

Why this answer

Options A and D are correct. A cross-region read replica for Aurora PostgreSQL provides near-real-time replication meeting the 15-minute RPO. Pre-provisioning EC2 instances in the DR region reduces RTO.

Option B (cross-region snapshot) may have higher RPO. Option C (single-region) does not meet DR requirements. Option E (S3 cross-region replication) is for files, not database.

Page 19

Page 20 of 24

Page 21