Courseiva

CCNA Sap Operations Questions

75 of 460 questions · Page 5/7 · Sap Operations topic · Answers revealed

301
MCQhard

An SAP system on AWS uses a shared file system via Amazon EFS mounted on multiple EC2 instances. Users report that file operations are slow. Which metric in Amazon CloudWatch should be analyzed to determine if the EFS file system's throughput is being throttled?

A.PercentIOLimit
B.BurstCreditBalance
C.DataReadIOBytes
D.MeteredIOBytes
AnswerB

If BurstCreditBalance is low or zero, the file system is throttled.

Why this answer

(BurstCreditBalance) is correct because the BurstCreditBalance metric indicates the remaining burst credits for an EFS file system. When burst credits are exhausted, throughput is throttled. Option A (PercentIOLimit) is not a standard CloudWatch metric for EFS.

Option C (DataReadIOBytes) measures the number of bytes read, not throttling. Option D (MeteredIOBytes) measures the metered I/O size, not directly related to throttling.

302
Multi-Selecthard

Which THREE factors should be considered when designing an SAP HANA backup strategy on AWS? (Select THREE.)

Select 3 answers
A.Encryption of backup data at rest and in transit
B.Security Group rules for backup traffic
C.EC2 instance type for backup server
D.Cross-region replication for disaster recovery
E.Backup frequency and retention period
AnswersA, D, E

Ensures security.

Why this answer

Options A, D, and E are correct. Option A: Encryption of backup data at rest and in transit ensures security and compliance. Option D: Cross-region replication provides disaster recovery capability by storing backups in a different AWS region.

Option E: Backup frequency and retention period directly affect recovery point objective (RPO) and compliance requirements. Option B (Security Group rules for backup traffic) is not a primary factor because backup traffic is typically encrypted and can be controlled via network ACLs or security policies; Security Groups are not the main design consideration. Option C (EC2 instance type for backup server) is irrelevant because AWS manages the underlying infrastructure for backup services like AWS Backup; you do not need to provision a separate EC2 instance for backups.

303
MCQhard

A company runs a critical SAP S/4HANA system on AWS. The system uses an SAP HANA database on an EC2 instance with EBS storage. The operations team receives an alert that the database is running out of disk space on the /hana/data volume. The current configuration uses a single 2 TB gp2 EBS volume for /hana/data, which is 85% full. The team needs to resolve the immediate space issue and also plan for future growth. The database is in production and cannot tolerate downtime. The team has enabled Multi-Attach on the volume. Which course of action should the team take?

A.Migrate the data to Amazon EFS and mount it to the EC2 instance.
B.Use the Elastic Volumes feature to modify the size of the existing volume to 4 TB while the instance is running.
C.Attach an additional EBS volume, create a logical volume spanning both volumes, and extend the filesystem without downtime.
D.Take an EBS snapshot of the volume, create a larger volume from the snapshot, and attach it to the instance.
AnswerC

Attaching an additional EBS volume and using LVM to extend the filesystem online allows for capacity increase without any downtime, making it the best choice.

Why this answer

It allows adding a second EBS volume to the instance and creating a logical volume spanning both volumes, then extending the filesystem online without downtime. This is a common approach for increasing space on SAP HANA data volumes without downtime. Option A is incorrect because Amazon EFS has higher latency and is not suitable for SAP HANA database data, which requires high throughput and low latency.

Option B is incorrect because although Elastic Volumes allows resizing online, the existing volume is gp2 and resizing to 4 TB is possible, but the question emphasizes planning for future growth, and adding another volume provides more flexibility. Option D is incorrect because taking an EBS snapshot requires quiescing the database, which would incur downtime.

304
MCQeasy

An SAP administrator needs to monitor the CPU utilization of an EC2 instance running SAP HANA. Which AWS service should be used to set an alarm when CPU utilization exceeds 90% for 5 minutes?

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

CloudWatch monitors metrics and can trigger alarms.

Why this answer

Amazon CloudWatch (Option D) is the correct answer because it is the AWS monitoring service that can create alarms on EC2 metrics such as CPUUtilization. When the CPU utilization exceeds a threshold (e.g., 90%) for a specified duration (e.g., 5 minutes), CloudWatch can trigger an alarm and notify via SNS. Option A (AWS CloudTrail) is incorrect because it records API activity, not performance metrics.

Option B (AWS Trusted Advisor) is incorrect because it provides best practice recommendations, not real-time monitoring or alarms. Option C (AWS Config) is incorrect because it tracks resource configuration changes, not operational metrics.

305
MCQmedium

An SAP system is running on EC2 instances in an Auto Scaling group. The operations team needs to ensure that when a new instance is launched, it is automatically registered with the SAP Application Server's load balancer. Which approach should be used?

A.Use a lifecycle hook with a Lambda function that runs a script to register the instance with the SAP load balancer.
B.Modify the AMI to include a startup script that registers the instance with the SAP load balancer.
C.Configure the Auto Scaling group to use an Elastic Load Balancer target group, and set health checks.
D.Use an AWS Lambda function triggered by a CloudWatch Events rule for EC2 instance state changes to register the instance.
AnswerA

Lifecycle hooks are designed for this purpose, allowing custom actions during instance launch/termination.

Why this answer

Lifecycle hooks allow the Auto Scaling group to pause instance launch and run custom actions (via Lambda) to register the instance with the load balancer before it becomes healthy.

306
MCQmedium

A company has an SAP landscape with multiple instances behind an Application Load Balancer (ALB). The operations team needs to ensure that the ALB targets are deregistered before an instance is terminated during a patching activity. Which AWS service can automate this?

A.Amazon EC2 Auto Scaling lifecycle hooks
B.AWS Systems Manager State Manager
C.AWS Elastic Beanstalk
D.AWS Lambda
AnswerA

Lifecycle hooks can pause instance termination to run custom actions like deregistering from ALB.

Why this answer

Amazon EC2 Auto Scaling lifecycle hooks can automatically deregister instances from an Application Load Balancer before termination. Option B is incorrect because AWS Systems Manager State Manager is used to maintain consistent configuration of instances, not for target deregistration. Option C is incorrect because AWS Elastic Beanstalk is a platform for deploying web applications, not for managing ALB target deregistration for SAP.

Option D is incorrect because AWS Lambda is a compute service that can be used as a target for lifecycle hooks, but the service that inherently provides the lifecycle hook mechanism is Amazon EC2 Auto Scaling.

307
Multi-Selecteasy

Which TWO of the following are best practices for operating SAP HANA on AWS?

Select 2 answers
A.Deploy SAP HANA in a Multi-AZ configuration for high availability.
B.Use EBS snapshots for backup and recovery.
C.Use General Purpose SSD (gp2) volumes for HANA data files.
D.Stop the HANA instance during backup to ensure consistency.
E.Disable swap space to improve performance.
AnswersA, B

Multi-AZ provides automatic failover in case of an AZ failure.

Why this answer

Deploying SAP HANA in a Multi-AZ configuration provides high availability by automatically failing over to a standby instance in another Availability Zone if the primary fails. Option B is correct because EBS snapshots are an efficient and consistent backup method for SAP HANA on AWS, supporting point-in-time recovery. Option C is incorrect because General Purpose SSD (gp2) volumes do not provide the consistent low latency and high IOPS required for SAP HANA data files; Provisioned IOPS (io1/io2) are recommended.

Option D is incorrect because stopping the HANA instance during backup is not necessary and causes downtime; EBS snapshots can be taken consistently without stopping the instance using pre-snapshot scripts or SAP HANA snapshot-based backups. Option E is incorrect because disabling swap space can lead to memory pressure issues; SAP HANA recommends having swap space configured for safety.

308
MCQmedium

A company has an SAP HANA database running on an EC2 instance with multiple EBS volumes striped using LVM. The database is experiencing high latency during peak hours. Monitoring shows that the EBS volumes have a high Average Queue Length (avgqueue) and are frequently hitting the IOPS limit. The volumes are gp2 with 3000 IOPS each. The operations team wants to improve performance without increasing storage size. What should they do?

A.Change the volume type to io2 Block Express with higher IOPS.
B.Migrate the database to an instance store-backed instance.
C.Change the volume type to gp3 and increase the IOPS and throughput.
D.Add more gp2 volumes to the LVM stripe set.
AnswerC

This is correct because gp3 offers a baseline of 3000 IOPS regardless of volume size, and allows separate increases in IOPS and throughput without increasing storage, directly addressing the latency and IOPS limit issue.

Why this answer

Gp3 volumes provide a higher baseline IOPS (3000) than gp2 at the same storage size, and allow increasing IOPS and throughput independently without increasing storage. This addresses the high latency and IOPS limit issue without requiring additional volume size. Option A is wrong because io2 Block Express is designed for very high performance and may be excessive for this scenario, also likely increasing cost.

Option B is wrong because instance store is ephemeral and not suitable for persistent database storage. Option D is wrong because adding more gp2 volumes would increase the total IOPS (since each gp2 volume has 3000 IOPS) and could help if the bottleneck is at the volume level, but gp3 provides a more cost-effective and simpler solution without adding more volumes.

309
MCQhard

A company runs SAP on AWS and uses a Multi-AZ RDS for Oracle as the database. They observe that the database failover took longer than expected during a recent test. What is the most likely cause of the increased failover time?

A.The database had a large number of uncommitted transactions that needed to be rolled back.
B.The DNS TTL was set too high, causing delays in routing to the new primary.
C.The primary instance had a high volume of ongoing transactions that needed to be completed or rolled back before failover could proceed.
D.The standby instance was not in sync because read replicas were used for reads.
AnswerC

RDS waits for pending transactions to complete, which can increase failover time.

Why this answer

In a Multi-AZ RDS deployment, during a failover, the primary instance must complete or roll back any in-flight transactions before the standby can take over. If there is a high volume of ongoing transactions, this process can take longer, increasing failover time. Option A is incorrect because uncommitted transactions are typically rolled back quickly; the issue is more about transactions that need to reach a consistent state.

Option B is incorrect because DNS TTL does not significantly affect RDS failover detection; the failover mechanism uses a CNAME update that is fast. Option D is incorrect because in Multi-AZ RDS, the standby is kept in sync synchronously, and read replicas are not used for Multi-AZ; they are a separate feature.

310
MCQmedium

A company is running an SAP HANA database on a single EC2 instance. The operations team notices that the instance is running low on memory, which is causing performance degradation. The team needs to increase memory without downtime. Which solution should they use?

A.Increase the swap space on the existing instance.
B.Launch a new EC2 instance with more memory and migrate the database.
C.Add additional EBS volumes to increase swap space.
D.Modify the EC2 instance type to a larger type with more memory.
AnswerA

Correct. Increasing swap can be done online (without stopping the instance) and provides temporary virtual memory.

Why this answer

Increasing swap space on the existing instance can be done without downtime by adding a swap file or enlarging an existing swap partition. This provides additional virtual memory, which can help alleviate memory pressure without stopping the database. While swap does not increase physical memory, it is a quick, no-downtime solution to mitigate performance degradation until a more permanent solution (e.g., migrating to a larger instance) can be scheduled.

Option D is incorrect because modifying the EC2 instance type requires stopping the instance, which causes downtime, contradicting the requirement.

Exam trap

Although adding swap space does not increase physical RAM, it can provide immediate relief without downtime, making it the only option that meets the no-downtime requirement in this scenario.

311
Multi-Selecteasy

Which TWO Amazon EBS volume types are recommended for SAP HANA database workloads? (Choose two.)

Select 2 answers
A.sc1 (Cold HDD)
B.st1 (Throughput Optimized HDD)
C.io1 (Provisioned IOPS SSD)
D.io2 Block Express
E.gp3 (General Purpose SSD)
AnswersD, E

High performance for SAP HANA.

Why this answer

Options D and E are correct. io2 Block Express provides high performance for SAP HANA, and gp3 provides balanced performance. Option A is wrong because sc1 is cold storage, not suitable for databases. Option B is wrong because st1 is throughput-optimized, not suitable for databases.

Option C is wrong because io1 is an older SSD type; io2 Block Express is recommended for SAP HANA.

312
MCQhard

An SAP system is deployed on AWS using a shared account structure. The security team requires that all changes to SAP security groups be logged and alerted. Which combination of AWS services should be used?

A.AWS Config with an SNS topic
B.AWS CloudTrail with Amazon CloudWatch Events
C.Amazon Inspector with Amazon SNS
D.Amazon GuardDuty with Amazon SNS
AnswerB

CloudTrail logs API calls and CloudWatch Events can trigger alerts in real-time.

Why this answer

AWS CloudTrail logs all API calls, including changes to security groups (e.g., AuthorizeSecurityGroupIngress, RevokeSecurityGroupEgress). Amazon CloudWatch Events can be configured to filter these specific API calls and trigger alerts via SNS or other targets, enabling real-time logging and alerting. Option A (AWS Config + SNS) can detect configuration changes but is not real-time and does not capture API-level details.

Option C (Amazon Inspector) is for vulnerability assessment, not change logging. Option D (Amazon GuardDuty) is for threat detection, not security group change monitoring.

313
MCQhard

An SAP system on AWS is experiencing slow performance. The operations team suspects a memory bottleneck on the SAP HANA database. Which CloudWatch metric should be monitored to confirm memory pressure?

A.CPUUtilization
B.SwapUsage (custom metric from HANA)
C.DiskReadOps
D.NetworkIn
AnswerB

High swap usage indicates insufficient physical memory.

Why this answer

(SwapUsage). SAP HANA uses swap space extensively when memory is under pressure; high swap usage directly indicates memory bottlenecks. Option A (CPUUtilization) measures processor load, not memory.

Option C (DiskReadOps) measures storage I/O operations, which may be a symptom but not a direct memory metric. Option D (NetworkIn) measures network throughput, unrelated to memory.

314
MCQhard

An SAP system on AWS is experiencing performance issues during peak hours. The operations team notices that the EBS volumes are consistently showing high queue depth. What should they do to improve performance?

A.Change the EC2 instance type to a larger one.
B.Provision more IOPS on the EBS volumes.
C.Change the EBS volume type to Throughput Optimized HDD (st1).
D.Increase the size of the EBS volumes.
AnswerB

Provisioned IOPS can directly reduce queue depth.

Why this answer

High EBS queue depth indicates that the volumes are not keeping up with IO demand, and provisioning more IOPS directly addresses this. Option A is incorrect: changing the EC2 instance type may improve available EBS bandwidth (throughput), but it does not provision additional IOPS; queue depth is primarily an IOPS issue. Option C is incorrect: switching to Throughput Optimized HDD (st1) is optimized for sequential throughput, not for high IOPS or low latency, so it would likely worsen queue depth for typical SAP workloads.

Option D is incorrect: increasing EBS volume size can increase baseline IOPS for gp2/gp3 volumes, but that increase is indirect and often insufficient; the direct remedy for high queue depth is to provision more IOPS.

315
MCQhard

A company runs its SAP HANA database on an EC2 instance with multiple EBS volumes striped using LVM. The operations team notices increased latency and wants to ensure consistent I/O performance. What is the MOST effective way to monitor the average queue length of the EBS volumes?

A.Monitor the `VolumeQueueLength` CloudWatch metric for each EBS volume.
B.Enable detailed monitoring on the EC2 instance to get per-minute metrics.
C.Create a custom CloudWatch metric using the `QueueDepth` performance counter from the OS.
D.Use the `iostat` command on the EC2 instance to monitor device queue length.
AnswerA

This metric directly reports the number of pending I/O requests, which is the queue length.

Why this answer

CloudWatch provides the `VolumeQueueLength` metric for EBS volumes, which is the best indicator of I/O queue depth.

316
MCQeasy

An SAP administrator needs to review API calls made by a user who accidentally deleted an S3 bucket used for SAP backups. Which AWS service provides a record of these API calls?

A.Amazon S3 server access logs
B.Amazon CloudWatch Logs
C.AWS Config
D.AWS CloudTrail
AnswerD

CloudTrail provides a record of API calls for governance and auditing.

Why this answer

AWS CloudTrail is the correct service because it records all API calls made to the AWS environment, including S3 bucket deletion events. When a user accidentally deletes an S3 bucket, CloudTrail captures the event details such as the user identity, source IP, and timestamp, enabling the SAP administrator to audit the action. This is essential for security analysis and operational troubleshooting in the context of SAP backups.

Exam trap

The trap here is that candidates often confuse Amazon S3 server access logs (which log object-level requests) with AWS CloudTrail (which logs management-plane API calls), leading them to select Option A when the question specifically asks about API calls that deleted the bucket itself.

How to eliminate wrong answers

Option A is wrong because Amazon S3 server access logs provide detailed records of requests made to an S3 bucket (e.g., GET, PUT, DELETE objects), but they do not capture management-plane API calls like bucket deletion itself; they log object-level operations, not bucket-level administrative actions. Option B is wrong because Amazon CloudWatch Logs is used for monitoring, storing, and accessing log files from AWS resources (e.g., EC2, Lambda), but it does not natively record API calls; it can ingest logs from other services like CloudTrail, but it is not the source of API call records. Option C is wrong because AWS Config is a service for evaluating resource configurations against desired policies and tracking configuration changes over time, but it does not record API calls; it focuses on resource state and compliance, not the audit trail of who performed an action.

317
MCQhard

A company runs a critical web application on a fleet of EC2 instances behind an Application Load Balancer (ALB) in an Auto Scaling group. The application stores session state in an ElastiCache Redis cluster (Cluster Mode disabled). The operations team receives alerts that the application is experiencing intermittent timeouts and high error rates. Upon investigation, they find that the Redis cluster's CPU utilization is consistently above 90%, and there are frequent 'MAXMEMORY' evictions. The application team confirms that they recently increased the number of concurrent users and added more session data per user. The current Redis cluster is a single cache.r5.large node with 13.37 GB of memory. Which of the following should the operations team do FIRST to address the performance issues?

A.Upgrade the instance type to cache.r5.2xlarge to double the memory and compute capacity.
B.Create a read replica in a different Availability Zone and redirect read traffic to it.
C.Change the eviction policy to 'allkeys-lru' to maximize memory utilization.
D.Enable Cluster Mode and add multiple shards to distribute the data across nodes.
AnswerD

Enabling Cluster Mode and adding shards allows horizontal scaling, distributing CPU and memory load.

Why this answer

The correct first step is to enable Cluster Mode and add multiple shards because the performance issue stems from CPU saturation and memory pressure on a single Redis node. Cluster Mode distributes data across multiple shards, reducing per-node CPU load and memory usage, which directly addresses the high CPU utilization and 'MAXMEMORY' evictions caused by increased concurrent users and session data.

Exam trap

The trap here is that candidates often choose vertical scaling (Option A) or eviction policy changes (Option C) as quick fixes, failing to recognize that the scenario's high CPU and memory evictions indicate a need for horizontal scaling via sharding, which is the only option that directly reduces per-node load and memory pressure.

How to eliminate wrong answers

Option A is wrong because upgrading to cache.r5.2xlarge only doubles memory and compute capacity, which is a vertical scaling approach that does not address the root cause of CPU saturation and may still lead to bottlenecks as load increases; it also ignores the horizontal scaling benefit of sharding. Option B is wrong because creating a read replica in a different AZ and redirecting read traffic does not reduce CPU utilization on the primary node for write-heavy session data, and ElastiCache Redis (Cluster Mode disabled) does not support read replicas in the same way as RDS; replicas are for read scaling, not for solving memory eviction or CPU issues on the primary. Option C is wrong because changing the eviction policy to 'allkeys-lru' only changes which keys are evicted when memory is full, but does not reduce the underlying memory pressure or CPU utilization; it may even worsen performance by evicting important session data, leading to application errors.

318
MCQmedium

A company is running a production SAP HANA database on an r5.4xlarge EC2 instance with EBS-backed storage. The operations team notices that the database checkpoint writes are frequently slow, causing application performance degradation. The team has already increased the EBS IOPS and throughput. What should the team do next to improve checkpoint write performance?

A.Modify the Linux I/O scheduler to 'noop' and ensure the EBS-optimized instance attribute is enabled.
B.Change the EBS volume type from io1 to gp2 for higher throughput.
C.Disable SAP HANA checkpoint compression to reduce CPU overhead.
D.Increase the EBS volume size to gain additional baseline IOPS.
AnswerA

Using noop scheduler reduces latency and improves sequential I/O performance for SAP HANA checkpoints.

Why this answer

Modifying the Linux I/O scheduler to 'noop' reduces CPU overhead and prevents fragmentation of sequential writes, which is beneficial for SAP HANA checkpoint writes. Additionally, ensuring the EBS-optimized instance attribute is enabled guarantees dedicated bandwidth between the instance and EBS. Option B is incorrect because changing from io1 to gp2 would reduce performance, as gp2 has lower sustained IOPS and throughput compared to provisioned IOPS volumes.

Option C is incorrect because disabling checkpoint compression would increase the volume of data written during checkpoints, worsening the performance issue. Option D is incorrect because simply increasing volume size does not directly improve checkpoint write performance; the team has already increased IOPS and throughput, so the bottleneck is likely I/O scheduling, not volume size.

319
MCQmedium

A company runs SAP ERP on AWS with a DR strategy using cross-region replication for SAP HANA. During a DR drill, the team discovers that the HANA database is not starting on the DR instance. Which configuration is most likely missing?

A.IAM roles for the DR instance to access S3.
B.EBS encryption on the DR volumes.
C.HANA system replication configuration with the correct 'PRIMARY' and 'SECONDARY' roles.
D.CloudWatch agent for logging.
AnswerC

HSR configuration is required for DR.

Why this answer

HANA system replication requires proper configuration of primary and secondary roles. Without the correct HSR configuration, the HANA database will not start on the DR instance. Option A is incorrect because IAM roles for S3 access are not necessary for HANA startup.

Option B is incorrect because EBS encryption does not affect HANA startup. Option D is incorrect because CloudWatch agent is for monitoring, not for HANA startup.

320
MCQhard

A company is migrating its SAP ERP system to AWS and needs to ensure high availability for the SAP Central Services (ASCS) and Enqueue Replication Server (ERS). They plan to use two EC2 instances in different Availability Zones with a shared file system. Which AWS service should they use to manage the failover of the virtual IP address?

A.Use an Elastic IP address and reassign it during failover using a script.
B.Configure Amazon Route 53 with failover routing and health checks for the virtual IP.
C.Deploy an Application Load Balancer to route traffic to the active instance.
D.Set up a Classic Load Balancer with cross-zone load balancing enabled.
AnswerA

Correct. Elastic IP can be reassigned between instances in different Availability Zones via automated scripts, providing a manageable virtual IP for SAP ASCS/ERS failover.

Why this answer

An Elastic IP address can be used as a virtual IP for SAP ASCS/ERS failover. By associating the Elastic IP with the active EC2 instance in one Availability Zone, and having a script (e.g., a watchdog process) automatically reassociate the Elastic IP to the standby instance upon failure, you can achieve virtual IP failover. This is a common pattern on AWS for SAP high availability when using shared file systems.

Option B is incorrect because Amazon Route 53 provides DNS failover, not virtual IP management; DNS time-to-live (TTL) delays make it unsuitable for fast failover in SAP environments. Option C is incorrect because an Application Load Balancer operates at Layer 7 and does not provide a static IP for SAP protocols. Option D is incorrect because Classic Load Balancer is deprecated and lacks the required static IP failover capability.

Exam trap

Candidates may think Route 53 is the solution for virtual IP failover, but DNS failover is not equivalent to IP address failover. The correct approach uses a floating IP address, typically via an Elastic IP or Network Load Balancer.

321
Multi-Selectmedium

A company is running SAP HANA on AWS and uses multiple EBS volumes for data and log storage. The company wants to encrypt all data at rest. Which three steps are required to ensure encryption of all EBS volumes? (Choose THREE.)

Select 3 answers
A.Use a custom AWS Key Management Service (KMS) key for encryption.
B.Enable encryption on the EBS snapshots after creation.
C.Launch EC2 instances with the EBS-optimized attribute set.
D.Enable EBS encryption by default in the AWS account for the region.
E.For existing unencrypted volumes, create an encrypted snapshot and restore from it.
AnswersA, D, E

Using a custom KMS key is not strictly required but is a valid step to control encryption keys, so it is correct.

Why this answer

Using a custom AWS KMS key allows granular control over encryption of EBS volumes. Option D is correct because enabling EBS encryption by default ensures all new volumes are encrypted automatically. Option E is correct because for existing unencrypted volumes, you must create an encrypted snapshot and restore from it to encrypt the volume.

Option B is incorrect because you cannot enable encryption on a snapshot after creation; encryption must be set when creating the snapshot copy. Option C is incorrect because the EBS-optimized attribute relates to network performance, not encryption.

Exam trap

A common trap is thinking that you can directly enable encryption on an existing unencrypted EBS volume or that you can encrypt snapshots after creation. The correct process is to create an encrypted snapshot copy and restore from it.

322
MCQmedium

A company is running SAP on AWS and needs to patch the operating system of multiple SAP application servers. The servers are in an Auto Scaling group behind an Application Load Balancer. What strategy minimizes downtime?

A.Create a new Auto Scaling group with patched instances and shift traffic using Route 53.
B.Use AWS Systems Manager Patch Manager to patch all instances at once.
C.Perform a rolling update by updating the Auto Scaling group's launch configuration with a new AMI.
D.Stop all instances, apply patches, then start them.
AnswerC

A rolling update replaces instances gradually, maintaining availability.

Why this answer

A rolling update with a launch template allows replacing instances one at a time, maintaining capacity. Option A is wrong because creating a new Auto Scaling group and shifting traffic using Route 53 is more complex and may cause downtime during the traffic shift. Option B is wrong because patching all instances at once via SSM may cause simultaneous reboots, leading to downtime.

Option D is wrong because stopping all instances, applying patches, then starting them causes downtime.

323
MCQhard

An SAP HANA database on EC2 is experiencing high swap usage. The system administrator suspects that the memory configuration is insufficient. Which CloudWatch metric should be monitored to confirm this?

A.NetworkOut
B.DiskWriteOps
C.SwapUsage
D.MemoryUtilization
AnswerC

SwapUsage is a custom metric reported by the CloudWatch agent. Monitoring this metric directly confirms high swap usage, indicating insufficient memory.

Why this answer

High swap usage indicates memory pressure, and SwapUsage is a custom metric that can be monitored via the CloudWatch agent. It is not a default EC2 metric. Option A (NetworkOut) measures network traffic, not memory.

Option B (DiskWriteOps) measures disk I/O, not memory. Option D (MemoryUtilization) is also a custom metric that measures memory usage, but swap usage directly indicates insufficient memory.

Exam trap

The trap is assuming SwapUsage is a standard EC2 metric. In reality, both SwapUsage and MemoryUtilization require the CloudWatch agent.

324
MCQhard

A company runs its SAP system on AWS and uses an Application Load Balancer (ALB) to distribute traffic to SAP Web Dispatchers. The operations team reports that some users experience intermittent connectivity issues. The ALB health checks are configured to check the /sap/public/bc/icf/logon endpoint. Which configuration change would best improve the reliability of health checks?

A.Increase the unhealthy threshold count to reduce false positives.
B.Enable HTTP/2 support on the ALB.
C.Replace the ALB with a Network Load Balancer.
D.Change the health check endpoint to a static HTML page that does not require authentication.
AnswerD

A static endpoint avoids session overhead and is more reliable.

Why this answer

Health checks should target a simple, static resource that is always available and does not require authentication. The /sap/public/bc/icf/logon endpoint requires a session and may fail due to transient authentication issues, causing false health check failures. Using a static HTML page eliminates this dependency and improves reliability.

Option A is incorrect because increasing the unhealthy threshold would actually delay detection of real failures, potentially allowing unhealthy instances to receive traffic longer. Option B is incorrect because HTTP/2 is a protocol enhancement for performance, not health check reliability. Option C is incorrect because replacing the ALB with a Network Load Balancer would not address the root cause; the issue is the health check endpoint itself.

325
MCQhard

An SAP HANA database on AWS is experiencing high latency. The operations team suspects a network bottleneck. The SAP application and HANA are on different subnets within the same VPC. Which AWS feature can help reduce latency?

B.Elastic Network Adapter (ENA)
C.VPC Peering
D.Internet Gateway
AnswerB

ENA provides enhanced networking performance.

Why this answer

(Elastic Network Adapter) is correct. ENA provides higher bandwidth and lower latency for HANA workloads. Option A (NAT Gateway) is incorrect because NAT Gateway adds latency and is used for outbound internet access, not for internal communication within a VPC.

Option C (VPC Peering) is incorrect because VPC Peering connects different VPCs, not subnets within the same VPC, and does not reduce latency within a single VPC. Option D (Internet Gateway) is incorrect because it provides internet access and would add latency.

326
MCQmedium

An SAP HANA database is running on an EC2 instance with an attached gp2 volume of 500 GiB. The exhibit shows the volume attributes. The database performance is degrading during peak hours. What is the most likely cause?

A.The volume is sized too small; it needs to be at least 1 TB to provide sufficient IOPS.
B.The volume is not EBS-optimized.
C.The volume's burst balance has been depleted due to sustained high I/O.
D.The volume type is gp2 and should be changed to gp3 for better performance.
AnswerC

gp2 volumes have burst credits; when exhausted, IOPS drop to baseline.

Why this answer

Gp2 volumes use a burst bucket that provides credits for I/O above the baseline of 3 IOPS per GiB. For a 500 GiB volume, the baseline is 1500 IOPS. Sustained high I/O consumes burst credits, and once depleted, performance drops to baseline, causing degradation.

Option A is incorrect: IOPS are not solely size-dependent; gp2 offers 3 IOPS/GiB baseline, and 500 GiB provides 1500 baseline IOPS, which may be sufficient. Option B is incorrect: EBS optimization is an EC2 instance feature, not a volume attribute; the issue is with the volume itself. Option D is incorrect: while gp3 offers higher baseline performance, the immediate cause here is burst balance depletion, not volume type.

327
Multi-Selectmedium

Which TWO actions can be taken to improve the resilience of an SAP HANA database running on AWS? (Choose two.)

Select 2 answers
A.Deploy the application in a single Availability Zone.
B.Use EBS snapshots for automated backup.
C.Configure SAP HANA system replication across Availability Zones.
D.Increase the CPU capacity of the database server.
E.Enable cross-region replication of the database.
AnswersB, C

Enables recovery from failures.

Why this answer

EBS snapshots provide a reliable, automated backup mechanism for SAP HANA data volumes, enabling point-in-time recovery and disaster recovery without requiring additional SAP HANA-specific replication. These snapshots are stored in Amazon S3 and can be used to restore the database to a consistent state, improving resilience against data corruption or accidental deletion.

Exam trap

The trap here is that candidates may confuse performance scaling (option D) with resilience, or mistakenly think cross-region replication (option E) is a simple built-in feature for SAP HANA on AWS, when in fact it requires complex setup and is not a standard resilience improvement for the database itself.

328
MCQmedium

A company runs an SAP HANA database on an EC2 instance. During a maintenance window, an administrator needs to stop the instance but ensure that the data in the attached EBS volumes is preserved and the instance can be started later without data loss. Which action should the administrator take?

A.Hibernate the instance from the AWS Management Console.
B.Terminate the instance from the AWS Management Console.
C.Stop the instance from the AWS Management Console.
D.Reboot the instance from the AWS Management Console.
AnswerC

Stopping an EBS-backed instance preserves all data on EBS volumes; the instance can be started later.

Why this answer

Stopping an EBS-backed EC2 instance preserves the data on the EBS volumes, allowing the instance to be started later without data loss. Option A (hibernate) is for instances with specific configurations and may not preserve all SAP HANA states. Option B (terminate) would delete the instance and potentially the volumes, causing data loss.

Option D (reboot) does not stop the instance and does not provide a clean state for maintenance.

329
MCQhard

A company is using SAP HANA in a multi-node scale-out configuration on AWS. The operations team needs to automate the patching of the operating system on all nodes with minimal downtime. Which approach is most suitable?

A.Stop all HANA nodes, patch the OS on each node, then start them all together.
B.Create new EC2 instances from a patched AMI and terminate the old ones.
C.Use AWS Systems Manager Patch Manager to apply patches to all nodes simultaneously.
D.Use a rolling patching strategy: patch one node at a time after isolating it from the HANA cluster.
AnswerD

Rolling updates minimize downtime by maintaining cluster availability.

Why this answer

A rolling patching strategy, where one node is isolated from the HANA cluster, patched, then reintegrated before moving to the next, minimizes downtime. Option D is correct because it avoids full cluster outage. Option A is wrong because stopping all nodes causes complete downtime.

Option B is wrong because creating new instances from a patched AMI requires data reload and may not be seamless for a scale-out HANA cluster. Option C is wrong because applying patches to all nodes simultaneously can cause cluster instability or downtime due to lack of coordination.

330
Multi-Selecthard

An SAP HANA database is running on an EC2 instance with multiple EBS volumes for data, log, and shared storage. The administrator needs to ensure that the volumes are backed up consistently to avoid data corruption. Which THREE measures should be taken? (Select THREE.)

Select 3 answers
A.Use the application-consistent snapshot feature of AWS Backup with pre/post scripts.
B.Take snapshots of all volumes simultaneously using the EBS multi-volume snapshot feature.
C.Ensure that the snapshots are taken in the correct order: data volumes first, then log volumes.
D.Freeze the filesystem using xfs_freeze before taking snapshots.
E.Stop the EC2 instance before taking snapshots.
AnswersB, C, D

Using the EBS multi-volume snapshot feature allows snapshots of all volumes to be taken simultaneously, ensuring crash consistency.

Why this answer

Options B, C, and D are correct. Option B: Using the EBS multi-volume snapshot feature allows snapshots of all volumes to be taken simultaneously, ensuring crash consistency. Option C: Taking snapshots in the correct order (data volumes first, then log volumes) is important for SAP HANA to maintain transactional consistency.

Option D: Freezing the filesystem with xfs_freeze (or equivalent) before taking snapshots ensures filesystem consistency and prevents data corruption. Option A is incorrect because although AWS Backup provides application-consistent snapshots, the question asks for measures the administrator should take directly; the recommended practice for SAP HANA on EC2 with EBS is to use the EBS multi-volume snapshot feature in conjunction with filesystem freeze and proper ordering. Option E is incorrect because stopping the instance causes downtime and is not necessary if using the other measures.

331
MCQhard

Refer to the exhibit. An SAP HANA database backup fails with the error shown. The backup target is an EFS file system mounted at /backup. The EC2 instance has the appropriate IAM role to access EFS. What is the MOST likely cause of this error?

A.The IAM role attached to the EC2 instance does not have permissions to write to EFS.
B.The SAP HANA database user does not have write permissions on the backup directory.
C.The EFS file system has insufficient IOPS for the backup operation.
D.The EFS file system is out of storage capacity.
AnswerB

The error clearly states 'Permission denied', indicating a file permission issue.

Why this answer

The error 'Permission denied' indicates that the SAP HANA user (e.g., <sid>adm) does not have write permissions to the backup directory on the EFS file system. Option A is wrong because the error is not about disk space. Option C is wrong because EFS does not have IOPS limits like EBS.

Option D is wrong because the IAM role is for accessing EFS, but file permissions are separate.

332
MCQmedium

A company runs an SAP HANA database on an EC2 instance with EBS volumes. The operations team needs to ensure that snapshots of the database volumes are consistent. Which step should be taken before initiating the EBS snapshot?

A.Use hdbsql to execute BACKUP DATA FULL USING FILE ('/backup/snapshot_prep')
B.Run the Linux 'sync' command on the instance
C.Stop the HANA database service
D.Create the EBS snapshot directly without any preparation
AnswerA

This command prepares HANA for a snapshot-consistent backup.

Why this answer

Running hdbsql with BACKUP DATA and USING FILE creates a snapshot-consistent backup. Option B is wrong because 'sync' only flushes OS buffers but does not guarantee HANA consistency. Option C is wrong because stopping HANA is excessive.

Option D is wrong because EBS snapshots alone do not ensure application consistency.

333
MCQmedium

A company runs SAP HANA on AWS using EC2 instances with HANA data replication between two Availability Zones. The operations team needs to test a disaster recovery failover. What is the correct procedure to promote the secondary HANA system to primary?

A.Stop the primary HANA system on the primary EC2 instance
B.Use the HANA takeover command on the secondary system
C.Modify the DNS record to point to the secondary instance
D.Shut down the primary EC2 instance and wait for automatic failover
AnswerB

The takeover command promotes the secondary to primary.

Why this answer

For HANA system replication, the secondary must be taken over using HANA Studio or hdbsql. Stopping the primary or shutting down EC2 instances does not trigger a clean takeover; modifying DNS without promoting the database would cause data inconsistency.

334
Matchingmedium

Match the AWS storage service to its characteristic relevant to SAP.

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

Concepts
Matches

Up to 256K IOPS per volume

Object storage for backups and archives

Offline data migration for large SAP datasets

POSIX-compliant file storage for SAP

Why these pairings

For SAP on AWS, EBS is used for HANA data/log volumes (block), S3 for backup/archiving (object), EFS for shared directories (file), and FSx for Lustre for high-performance analytics.

335
MCQmedium

A company uses AWS Organizations with multiple accounts. The security team wants to ensure that all newly created S3 buckets in any account are automatically tagged with a 'CostCenter' tag. Which solution requires the least operational overhead?

A.Create an SCP that denies s3:CreateBucket unless the request includes the CostCenter tag.
B.Use AWS Config rules to detect untagged buckets and trigger a Lambda function to add tags.
C.Configure each account's S3 bucket creation process to include tagging.
D.Use AWS CloudTrail to monitor bucket creation and send alerts to the security team.
AnswerA

Prevents creation of untagged buckets, enforcing compliance proactively.

Why this answer

A Service Control Policy (SCP) that denies s3:CreateBucket unless the request includes the CostCenter tag enforces tagging at the organization level, preventing any bucket creation without the required tag. This approach requires no ongoing maintenance, no additional services, and no per-account configuration, making it the least operational overhead solution.

Exam trap

The trap here is that candidates often choose AWS Config or Lambda solutions because they are familiar with remediation workflows, but they overlook that SCPs provide preventive enforcement with zero operational overhead, which is the key requirement in the question.

How to eliminate wrong answers

Option B is wrong because it is reactive: AWS Config rules detect untagged buckets after creation, and the Lambda function must add tags retroactively, which incurs ongoing compute costs and potential delays. Option C is wrong because it relies on manual or custom automation per account, which is error-prone and does not scale across many accounts in an organization. Option D is wrong because CloudTrail only logs bucket creation events; it does not enforce tagging or automatically remediate untagged buckets, leaving the security team to manually intervene.

336
MCQeasy

A company has a production AWS account that contains an Amazon RDS for MySQL DB instance. The database is critical and must have automated backups enabled with a retention period of 30 days. The company also requires point-in-time recovery to any second within the retention period. The operations team has configured automated backups with a retention period of 30 days, but they notice that the automated backups are not being taken consistently. The DB instance is in a Multi-AZ deployment and has a storage size of 500 GB. The team checks the backup window and finds that it is set to 02:00-03:00 UTC. The backup window is non-overlapping with the maintenance window. The DB instance is actively used during the backup window with heavy write traffic. Which of the following is the MOST likely reason for the inconsistent automated backups?

A.The storage size of 500 GB exceeds the maximum backup size limit.
B.The heavy write traffic during the backup window causes I/O suspension and backup failures.
C.The Multi-AZ deployment does not support automated backups.
D.The backup window overlaps with the maintenance window.
AnswerB

High write activity can interfere with the backup process, leading to failures.

Why this answer

The heavy write traffic during the backup window causes I/O suspension, which can lead to backup failures. When an RDS for MySQL DB instance experiences high write activity during a backup, the backup process may be delayed or fail due to I/O suspension, especially if the instance is under heavy load. This is because automated backups require a consistent snapshot, and excessive write I/O can prevent the snapshot from completing within the backup window.

Exam trap

The trap here is that candidates may overlook the impact of heavy write traffic on backup consistency, assuming that Multi-AZ or non-overlapping windows guarantee reliable backups, or mistakenly think that storage size limits or Multi-AZ incompatibility are the root cause.

How to eliminate wrong answers

Option A is wrong because RDS for MySQL does not have a maximum backup size limit; the backup storage is automatically provisioned and can scale up to the DB instance's allocated storage. Option C is wrong because Multi-AZ deployments fully support automated backups, and in fact, automated backups are taken from the standby instance to reduce performance impact. Option D is wrong because the scenario explicitly states that the backup window is non-overlapping with the maintenance window, so this is not a contributing factor.

337
MCQhard

An SAP administrator needs to perform an OS-level patching of the underlying EC2 instances hosting an SAP HANA database in a production environment. The HANA database is configured with system replication across two Availability Zones. What is the best practice to minimize downtime?

A.Stop the EC2 instance, apply patches, and start.
B.Take a snapshot of the volume, patch the OS, and restore if needed.
C.Fail over to the secondary HANA instance, apply patches to the primary, then fail back.
D.Stop the HANA database, apply patches, and restart.
AnswerC

Minimizes downtime.

Why this answer

Failing over to the secondary and patching the primary reduces downtime. Option A is wrong because stopping HANA causes downtime. Option B is wrong because stopping EC2 instance causes downtime.

Option D is wrong because stopping HANA causes downtime.

338
MCQhard

Refer to the exhibit. An SAP administrator receives reports that an application server is slow. The administrator checks the CloudWatch alarm for high CPU but it shows 'OK' state. The get-metric-statistics output shows CPU utilization around 90-95%. What is the most likely reason the alarm is not triggering?

A.The alarm is configured to evaluate based on a longer period than the data shown
B.The alarm is disabled or the action is not configured
C.The alarm threshold is set to 95% and the average is exactly 95%
D.The alarm threshold is set to 90% and the evaluation period is 1 hour
AnswerA

The alarm may require sustained high CPU over 15+ minutes; the data only shows 10 minutes.

Why this answer

The alarm is in OK state despite high CPU, likely because the alarm threshold is set higher than 95% or the evaluation period is longer than the data points shown. The data shows high CPU for only 10 minutes; if the alarm requires sustained high CPU over a longer period, it may not have breached yet.

339
MCQhard

An SAP administrator attaches this IAM policy to a user. The user is unable to start an EC2 instance with ID i-0abcdef1234567890. What is the most likely cause?

A.The IAM policy does not include the ec2:RebootInstances action.
B.The IAM policy is applied to a user who is working in a different AWS region than the one specified in the resource ARN.
C.The IAM policy does not include the ec2:DescribeInstances action.
D.The IAM policy does not include the ec2:StartInstances action.
AnswerB

Correct. The resource ARN in the policy specifies a particular region, but the user is operating in a different region, so the policy does not apply.

Why this answer

The IAM policy likely includes a resource ARN that specifies a region (e.g., us-east-1). IAM policies with resource ARNs that include a region only apply to resources in that region. If the user is attempting to start the EC2 instance in a different region (e.g., eu-west-1), the policy does not grant permission, even though it includes ec2:StartInstances.

Option B correctly identifies this region mismatch as the most likely cause. Options A, C, and D are incorrect because the policy does include the necessary actions for starting an instance.

340
Multi-Selecteasy

Which THREE metrics should be monitored to ensure the health of an SAP NetWeaver application server? (Choose three.)

Select 3 answers
A.Memory utilization
B.Database connection count
C.CPU utilization
D.Work process utilization
E.Network packet loss
AnswersA, C, D

Memory pressure can cause swapping and performance degradation.

Why this answer

Options A, C, and D are correct. Memory utilization, CPU utilization, and work process utilization are key indicators of SAP NetWeaver application server health. Option B is wrong because database connection count is a database-level metric, not directly indicative of application server health.

Option E is wrong because network packet loss is an infrastructure metric that affects connectivity but is not a specific application server health metric.

341
Multi-Selecteasy

Which TWO AWS services can be used to monitor SAP HANA database performance metrics? (Choose TWO.)

Select 1 answer
A.SAP HANA Studio / SAP HANA Cockpit
B.AWS CloudTrail
C.AWS Config
D.Amazon CloudWatch
E.AWS X-Ray
AnswersD

Amazon CloudWatch can collect custom metrics from SAP HANA via monitoring integrations, making it a valid AWS service for monitoring performance metrics.

Why this answer

Amazon CloudWatch is the only AWS service listed that can monitor SAP HANA database performance metrics. SAP HANA Studio and SAP HANA Cockpit are native SAP tools, not AWS services. AWS CloudTrail, AWS Config, and AWS X-Ray are not used for monitoring database performance metrics.

342
MCQmedium

An SAP on AWS environment uses a shared file system with Amazon EFS. The operations team reports slow performance during peak hours. Which configuration change would most likely improve throughput?

A.Enable encryption at rest
B.Increase provisioned throughput
C.Enable Bursting Throughput
D.Change the performance mode to Max I/O
AnswerB

Increasing provisioned throughput directly raises the throughput limit, providing consistent performance during peak hours.

Why this answer

Increasing provisioned throughput on Amazon EFS is a direct configuration change that raises the throughput limit, which most reliably improves performance during peak hours. Bursting throughput is the default mode and cannot be 'enabled' as a change; it automatically allows bursting based on stored data, but during sustained peak usage, provisioned throughput is needed to guarantee higher throughput. Option A (encryption at rest) does not affect performance.

Option C (Enable Bursting Throughput) is misleading because bursting is already enabled by default and cannot be turned on as a new configuration; it also does not provide sustained throughput improvement. Option D (Max I/O performance mode) optimizes for high I/O operations but does not directly increase throughput.

343
MCQmedium

An SAP system running on AWS experiences high latency when accessing data in Amazon S3. The operations team suspects network bandwidth limitations. Which AWS service can be used to monitor the network throughput between the EC2 instances and S3?

A.Amazon CloudWatch S3 metrics
B.AWS Trusted Advisor
C.AWS Config
D.VPC Flow Logs
AnswerD

Correct. VPC Flow Logs capture IP traffic metadata (e.g., source/destination, packet/byte counts) which can be used to analyze network throughput between EC2 instances and S3.

Why this answer

(VPC Flow Logs) is correct because VPC Flow Logs capture IP traffic information and can help analyze network throughput between EC2 instances and S3. Option A is incorrect because CloudWatch S3 metrics are request-level, not network-level. Option B is incorrect because Trusted Advisor provides best practice checks, not real-time monitoring.

Option C is incorrect because AWS Config records resource changes, not network performance.

344
MCQmedium

A company is running an SAP HANA database on an EC2 instance with a single EBS volume for /hana/data. The performance team reports high write latency during peak hours. Which change would most effectively reduce write latency without compromising data durability?

A.Switch the EBS volume type to Provisioned IOPS SSD (io1) with high IOPS
B.Increase the size of the EBS volume to gain more baseline IOPS
C.Move the /hana/data directory to a General Purpose SSD (gp2) volume
D.Configure multiple EBS volumes in a striped RAID 0 array for the /hana/data directory
AnswerD

Striping across multiple EBS volumes distributes I/O and reduces latency.

Why this answer

Configuring multiple EBS volumes in a striped RAID 0 array is the most effective way to reduce write latency for SAP HANA's /hana/data directory because it distributes I/O across multiple volumes, increasing throughput and reducing latency. This approach is recommended by AWS for high-performance SAP HANA workloads. Option A (switching to io1 with high IOPS) could improve performance but is more expensive and may not provide the same level of throughput as striping.

Option B (increasing volume size) only increases baseline IOPS for gp2/gp3 volumes but does not guarantee latency reduction. Option C (moving to gp2) is a downgrade from the current volume type (likely gp3 or io1) and would likely increase latency.

345
Multi-Selecthard

A company runs SAP S/4HANA on AWS. They want to ensure high availability for the central services (ASCS) and enqueue replication. Which TWO components should be deployed to meet this requirement?

Select 2 answers
A.Secondary ASCS instance in a different Availability Zone
B.Primary ASCS instance in one Availability Zone
C.Third ASCS instance in a third Availability Zone
D.Enqueue Replication Server (ERS) in a different Availability Zone
E.SAP HANA database replication
AnswersB, D

Primary ASCS runs the enqueue service.

Why this answer

For HA, deploy the ASCS instance in a primary node and an enqueue replication server (ERS) in a secondary node, typically in different AZs.

346
MCQhard

An SAP administrator created the IAM policy shown for a backup script. The script fails when trying to upload a backup to S3. What is the likely cause?

A.The resource for S3 should include the bucket itself (arn:aws:s3:::sap-backup-bucket).
B.The ec2:Describe* action is not required and causes a conflict.
C.The s3:* action is too broad and is denied by an S3 bucket policy.
D.The KMS key ARN is malformed; it contains extra characters.
AnswerD

The key ARN has a typo with 'a123b4cd56ef' instead of proper format.

Why this answer

The KMS key ARN in the IAM policy is malformed (contains extra characters). When the backup script attempts to upload to S3 with server-side encryption using KMS (SSE-KMS), S3 needs to decrypt the object using the KMS key. If the key ARN is invalid, the kms:Decrypt permission cannot be evaluated, causing the upload to fail.

Option A is incorrect because for PutObject, the resource must be the object ARN (arn:aws:s3:::sap-backup-bucket/*), not the bucket itself. Option B is incorrect because ec2:Describe* actions do not interfere with S3 operations. Option C is incorrect because the s3:* action, while broad, is permitted on the specified objects, and there is no indication of a restrictive bucket policy.

347
MCQmedium

A company runs a critical SAP application on an SAP HANA database on AWS. The database is backed up daily to Amazon S3. The company needs to ensure that the database can be restored to a point in time within the last 24 hours with minimal data loss. Which AWS service should be used to achieve this requirement?

A.Enable S3 Object Versioning on the backup bucket.
B.Configure Amazon Data Lifecycle Manager (DLM) for EBS snapshots.
C.Use AWS Backup with the SAP HANA backup plan.
D.Use Amazon RDS automated backups.
AnswerC

AWS Backup provides a managed backup service for SAP HANA databases, supporting automated backups and point-in-time recovery (PITR).

Why this answer

AWS Backup provides a managed backup service for SAP HANA databases, supporting automated backups and point-in-time recovery (PITR) within a specified retention period. Option A is incorrect because S3 Object Versioning protects against accidental deletion but does not provide database-level point-in-time recovery. Option B is incorrect because Amazon Data Lifecycle Manager (DLM) is designed for managing EBS snapshots, not for SAP HANA database backups.

Option D is incorrect because Amazon RDS is a managed relational database service and does not support SAP HANA.

Exam trap

Candidates often confuse DLM with AWS Backup. DLM is for EBS snapshots, not SAP HANA backups. AWS Backup is the correct service for SAP HANA because it offers application-consistent backup plans and supports point-in-time recovery.

348
MCQhard

An SAP administrator notices that the /hana/data filesystem on an SAP HANA database is approaching 95% utilization. The HANA instance uses EBS gp3 volumes. What is the MOST efficient way to increase storage without downtime?

A.Add a new EBS volume and extend the logical volume.
B.Migrate the database to a new instance with larger volumes.
C.Modify the existing EBS volume to increase its size.
D.Create a snapshot, create a larger volume, and restore.
AnswerC

EBS gp3 volumes support online resizing.

Why this answer

EBS gp3 volumes support online resizing without downtime. You can increase the volume size while the instance is running, and then extend the filesystem and logical volume (if using LVM) to utilize the additional space. This avoids any disruption to the SAP HANA database.

Exam trap

The trap here is that candidates may think adding a new volume (Option A) is simpler or that snapshot-based migration (Option D) is required, but AWS EBS gp3 volumes support online resizing, making Option C the most efficient and downtime-free approach.

How to eliminate wrong answers

Option A is wrong because adding a new EBS volume and extending the logical volume requires attaching the new volume, which may involve rescanning the SCSI bus and could introduce complexity, but more importantly, it is less efficient than simply resizing the existing volume since it adds management overhead and potential path issues. Option B is wrong because migrating the database to a new instance with larger volumes would require downtime for data transfer and reconfiguration, making it inefficient compared to a simple volume resize. Option D is wrong because creating a snapshot and restoring to a larger volume involves stopping the database or at least ensuring data consistency, which introduces downtime, and is unnecessary when gp3 volumes can be resized online.

349
Multi-Selecthard

An SAP system on AWS is running on a single Availability Zone. The operations team wants to improve high availability. Which THREE actions should they take?

Select 3 answers
A.Use an Application Load Balancer to distribute traffic across AZs.
B.Use EBS Multi-Attach to share volumes across AZs.
C.Assign Elastic IP addresses to instances for failover.
D.Deploy SAP application servers in an Auto Scaling group across multiple AZs.
E.Configure the SAP database for Multi-AZ deployment.
AnswersA, D, E

ALB can route traffic to healthy targets in multiple AZs.

Why this answer

A: Use an Application Load Balancer to distribute traffic across AZs. This helps distribute traffic across multiple AZs, improving availability. D: Deploy SAP application servers in an Auto Scaling group across multiple AZs.

This ensures that if one AZ fails, the application servers in other AZs continue to serve traffic. E: Configure the SAP database for Multi-AZ deployment. This provides a standby database in another AZ for automatic failover.

B is incorrect because EBS volumes are AZ-specific and cannot be attached across AZs. C is incorrect because Elastic IP addresses are static public IPs and do not provide high availability across AZs on their own; they are typically used for failover within a single AZ.

350
Multi-Selecthard

An SAP administrator is troubleshooting a performance issue on an SAP HANA database running on an EC2 instance. The instance type is r5.4xlarge with EBS-optimized enabled. CloudWatch metrics show high WriteIOPS but low throughput. Which THREE factors could be causing this behavior? (Choose three.)

Select 3 answers
A.The SAP HANA database is performing many small write operations.
B.The database is experiencing lock contention or thread contention.
C.The EBS volume's throughput limit is lower than the burst credit threshold.
D.The instance's EBS-optimized feature is not enabled.
E.The EBS volume is configured with a large block size.
AnswersA, B, C

Small writes increase IOPS but result in low throughput.

Why this answer

Options A, B, and C are correct. Small I/O operations cause high IOPS but low throughput (A). Lock contention or thread contention can reduce throughput by causing waiting times (B).

EBS volume throughput limits can cap the actual throughput even if IOPS are high (C). Option D is incorrect because EBS optimization is already enabled. Option E is incorrect because a large block size would increase throughput, not cause low throughput.

351
MCQeasy

A company wants to automate the backup of SAP HANA databases running on EC2 instances. The backups must be stored in Amazon S3 for long-term retention. Which AWS service can be used to schedule and manage these backups?

A.AWS Storage Gateway
B.AWS Database Migration Service (DMS)
C.AWS Backup
D.Amazon S3 Lifecycle policies
AnswerC

AWS Backup can schedule and manage backups of SAP HANA databases on EC2, supporting application-consistent backups.

Why this answer

AWS Backup (Option C) is the correct service for automating backups of SAP HANA databases on EC2, supporting application-consistent backups via pre- and post-scripts and storing them in S3 for long-term retention. Option A (Storage Gateway) is for hybrid storage integration, not backup automation. Option B (DMS) is for database migration, not backup.

Option D (S3 Lifecycle policies) manage object lifecycle, not scheduling backups.

352
MCQeasy

A company runs SAP on AWS and needs to ensure that the SAP application logs are centrally collected and analyzed for security incidents. Which AWS service should be used to collect and store the logs from EC2 instances?

A.Amazon Kinesis Data Firehose
B.AWS CloudTrail
C.Amazon S3
D.Amazon CloudWatch Logs
AnswerD

CloudWatch Logs can collect and store application logs from EC2 instances.

Why this answer

Amazon CloudWatch Logs can collect and store application logs from EC2 instances using the unified CloudWatch agent. It provides centralized log management and can be used for security incident analysis. Option A (Amazon Kinesis Data Firehose) is for streaming data to destinations like S3 or Redshift, not primarily for log collection from instances.

Option B (AWS CloudTrail) records API activity, not application logs. Option C (Amazon S3) can store logs but does not directly collect them from EC2 instances without additional services like CloudWatch Logs or Kinesis. Therefore, Amazon CloudWatch Logs is the correct service for collecting and storing SAP application logs from EC2 instances.

Exam trap

Candidates often choose CloudTrail because it logs API calls, but it does not capture application-level logs. CloudWatch Logs is the correct service for collecting custom application logs from EC2 instances.

353
MCQeasy

Solutions Architect needs to automate the patching of Amazon EC2 instances running Amazon Linux 2. The instances are in an Auto Scaling group and must be patched without downtime. Which approach is BEST?

A.Use Amazon Inspector to scan for vulnerabilities and automatically apply patches.
B.Terminate all instances and let the Auto Scaling group launch new instances from a patched AMI.
C.Use AWS Systems Manager Patch Manager with a maintenance window and update the Auto Scaling group launch configuration to use a patched AMI for new instances.
D.Create a custom AMI with latest patches and update the Auto Scaling group manually during a maintenance window.
AnswerC

Patch Manager applies patches and rolling updates minimize downtime.

Why this answer

AWS Systems Manager Patch Manager automates patching of existing EC2 instances without downtime by using a maintenance window to schedule patch installation, and updating the Auto Scaling group launch configuration ensures new instances launched by the group use a patched AMI, maintaining consistency. This approach avoids terminating all instances at once (which would cause downtime) and leverages AWS-native automation for ongoing compliance.

Exam trap

The trap here is that candidates may think Amazon Inspector can automatically patch instances (option A) because it integrates with Systems Manager, but Inspector only scans and reports vulnerabilities, not applying patches directly.

How to eliminate wrong answers

Option A is wrong because Amazon Inspector is a vulnerability assessment service that identifies security issues but does not automatically apply patches; it integrates with Systems Manager for remediation but cannot patch instances on its own. Option B is wrong because terminating all instances in an Auto Scaling group simultaneously would cause downtime, as the group would need to launch new instances from a patched AMI, which violates the 'no downtime' requirement. Option D is wrong because creating a custom AMI and manually updating the Auto Scaling group during a maintenance window is not automated and does not address patching of existing running instances, only new ones; it also requires manual intervention, which is less reliable and scalable than the automated approach in option C.

354
Multi-Selectmedium

Which TWO actions are required to set up automated failover for an SAP HANA database using AWS services? (Choose TWO.)

Select 2 answers
A.Create an AWS Lambda function to reassign an Elastic IP address to the standby instance
B.Configure a CloudWatch alarm to detect database failure
C.Use an Amazon RDS Multi-AZ deployment for the HANA database
D.Schedule a snapshot and restore on failure
E.Store HANA data on Amazon EFS and mount it on both instances
AnswersA, B

Lambda can automate the IP reassignment during failover.

Why this answer

Automated failover requires detecting failure and reassigning resources. CloudWatch alarms can detect database unavailability and trigger a Lambda to reassign the Elastic IP to the standby instance. Stopping the primary is unnecessary and might not be desired.

Multi-AZ RDS is for non-HANA databases. EFS is not typically used for HANA failover. Snapshot restore is too slow for automated failover.

355
MCQhard

A company runs SAP ERP on AWS with a two-tier architecture: application and database on the same EC2 instance. The instance is part of an Auto Scaling group with a minimum of 1 and maximum of 1, so it's effectively a single instance. The operations team wants to implement a patching strategy for the operating system that minimizes downtime. They need to apply security patches quarterly. Which approach should they take?

A.Use AWS Systems Manager Patch Manager to apply patches during a maintenance window.
B.Use AWS Systems Manager Automation to create a new AMI, launch a new instance, and update the DNS record.
C.Create a second instance in the Auto Scaling group and detach the original.
D.Apply patches in-place using yum update and reboot the instance.
AnswerB

This blue/green deployment minimizes downtime.

Why this answer

The best approach for minimizing downtime when patching a single-instance SAP ERP system on AWS. Using AWS Systems Manager Automation to create a new AMI, launch a new instance, and update the DNS record allows a controlled replacement with minimal downtime, as the new instance is fully prepared before switching traffic. Option A (Patch Manager) applies patches in-place, which still requires a reboot and thus downtime.

Option C (creating a second instance in the Auto Scaling group) is not feasible because the architecture is two-tier (application and database on same instance), and simply adding a second instance without proper data synchronization would cause data inconsistency. Option D (in-place yum update and reboot) also requires downtime and does not provide a rollback mechanism.

356
MCQhard

A company runs SAP on AWS and uses a distributed deployment with multiple application servers in an Auto Scaling group. They want to ensure that when a new instance is launched, it is automatically registered with the SAP Central Services instance. Which approach should they use?

A.Configure the user data script to run the registration command on instance boot.
B.Use an AWS CloudFormation template to create the instance and include the registration in the template.
C.Use AWS Systems Manager Run Command to register the instance after it launches.
D.Use an Auto Scaling lifecycle hook that triggers a Lambda function to perform the registration when the instance enters the 'InService' state.
AnswerD

An Auto Scaling lifecycle hook pauses the instance in the 'InService' state and triggers a Lambda function to perform registration, ensuring the instance is registered before it receives traffic.

Why this answer

Auto Scaling lifecycle hooks allow you to pause an instance during launch and perform custom actions, such as invoking a Lambda function to register the instance with SAP Central Services, before the instance is placed in service. Option A is incorrect because user data runs at boot but does not integrate with the Auto Scaling lifecycle to ensure registration completes before the instance becomes healthy. Option B is incorrect because CloudFormation is used for infrastructure provisioning and not for per-instance registration triggered by scaling events.

Option C is incorrect because AWS Systems Manager Run Command is not automatically triggered during Auto Scaling launches; it requires manual or scheduled execution.

Exam trap

Candidates often confuse user data with lifecycle hooks. User data runs at boot but does not pause the instance lifecycle, so it cannot guarantee registration before the instance becomes healthy. A lifecycle hook with a Lambda function ensures registration completes before the instance is marked 'InService'.

357
Multi-Selecteasy

Which TWO AWS services can be used to automate the patching of SAP application servers?

Select 2 answers
A.AWS CloudFormation
B.AWS Systems Manager Patch Manager
C.Amazon EC2 Auto Scaling
D.AWS Lambda
E.AWS Elastic Beanstalk
AnswersB, D

Patch Manager automates patching.

Why this answer

AWS Systems Manager Patch Manager (Option B) is correct because it provides a fully managed service specifically designed to automate the process of patching operating systems and applications, including SAP application servers running on EC2 instances. It uses patch baselines to define approved patches and can schedule patching across multiple instances, ensuring SAP systems remain compliant without manual intervention.

Exam trap

The trap here is that candidates may confuse infrastructure automation (CloudFormation, Auto Scaling) with operational patching, or assume Elastic Beanstalk can manage SAP workloads, when in fact only Systems Manager Patch Manager and Lambda (for custom orchestration) are directly applicable for automating SAP patching.

358
MCQmedium

A company runs SAP on AWS and needs to patch the operating system of multiple EC2 instances on a schedule. The instances are part of an Auto Scaling group. Which AWS service can be used to apply patches without disrupting the Auto Scaling group's desired capacity?

A.AWS Systems Manager Patch Manager
B.Amazon EC2 Auto Scaling
C.AWS CloudFormation
D.AWS CodeDeploy
AnswerA

Patch Manager automates OS patching on a schedule.

Why this answer

AWS Systems Manager Patch Manager can be used to apply OS patches to EC2 instances on a schedule. It integrates with Auto Scaling groups to maintain desired capacity, for example by using instance refresh to roll out patches without disrupting the group's capacity. Option B (Amazon EC2 Auto Scaling) is incorrect because it manages scaling, not patching.

Option C (AWS CloudFormation) is incorrect because it is used for infrastructure provisioning, not patching. Option D (AWS CodeDeploy) is incorrect because it is for application deployments, not OS patching.

359
MCQeasy

A company is running SAP on AWS and wants to automatically recover an unhealthy EC2 instance that hosts their SAP application. Which AWS feature should they configure to automatically restart the instance in the same Availability Zone if it fails?

A.Cluster Placement Group
B.Auto Scaling group
C.EC2 Auto Recovery
D.Lifecycle Hook
AnswerC

Auto Recovery restarts the same instance in the same AZ.

Why this answer

(EC2 Auto Recovery) is correct because EC2 Auto Recovery automatically recovers an impaired EC2 instance in the same Availability Zone, which matches the requirement. Option A is wrong because a Cluster Placement Group is a logical grouping of instances within a single AZ to achieve low-latency network performance, not for automatic recovery. Option B is wrong because an Auto Scaling group is used for scaling and replacing instances based on demand, but it may launch instances in different AZs, not necessarily the same AZ.

Option D is wrong because a Lifecycle Hook is used to perform custom actions when instances are launched or terminated by Auto Scaling, not for automatic recovery of a single instance.

360
MCQeasy

Refer to the exhibit. An SAP administrator has created this CloudFormation snippet to create a Route 53 record for an SAP system. The record is intended to point to an Application Load Balancer. What is a potential issue with this configuration?

A.Using a CNAME record for the root domain (zone apex) is not allowed.
B.The TTL value of 60 seconds is too low for production use.
C.The RecordSet type should be A instead of CNAME for an ALB.
D.The ResourceRecords value should be an IP address, not a DNS name.
AnswerA

DNS standards prohibit CNAME at the zone apex; an Alias record should be used instead.

Why this answer

DNS standards prohibit using a CNAME record at the zone apex (root domain, e.g., example.com) because it would conflict with the SOA and NS records required for the zone. Route 53 does not allow CNAME records for the root domain. Option B is incorrect because a TTL of 60 seconds is acceptable for dynamic environments.

Option C is incorrect because an ALB endpoint is a DNS name, not an IP address, so an A record cannot be used; Route 53 supports alias records for ALBs, but the snippet uses a CNAME. Option D is incorrect because the ResourceRecords value for a CNAME record must be a DNS name, not an IP address.

361
MCQhard

An SAP system administrator notices that the SAP Central Services (ASCS) instance on an EC2 instance has failed. The instance is still running, but the ASCS service is unresponsive. What is the MOST efficient way to restore the ASCS service without affecting the SAP application?

A.Manually fail over the ASCS to the secondary node in the cluster.
B.Reboot the EC2 instance hosting the ASCS.
C.Restore the ASCS instance from the most recent AMI backup.
D.Restart the ASCS service using SAP MMC or sapcontrol.
AnswerD

Restarting the ASCS service using SAP MMC or sapcontrol directly targets the failed service, is quick, and minimizes impact on the SAP application.

Why this answer

The most efficient way to restore the ASCS service without affecting the SAP application is to restart the ASCS service using SAP MMC or sapcontrol (Option D). This action is quick and minimally disruptive, as it only restarts the service without impacting the underlying EC2 instance or requiring failover procedures.

Option A (fail over to secondary node) is less efficient because it requires a properly configured cluster environment and may take longer to orchestrate, and it may not be necessary if the primary node's service can be restarted.

Option B (reboot the EC2 instance) is inefficient and disruptive because it restarts the entire instance, affecting all services and potentially causing downtime for the SAP application.

Option C (restore from AMI backup) is the most time-consuming and resource-intensive approach, and is only appropriate if the instance or service is corrupt and cannot be recovered by restarting.

362
MCQhard

An SAP administrator is restoring an SAP HANA database from a backup stored in Amazon S3. The restore fails with an error indicating that the backup file is corrupt. The backup was created using the SAP HANA BACKUP command with the S3 backint agent. What could cause the backup file to be corrupt?

A.S3 Transfer Acceleration was used during backup.
B.The multipart upload of the backup file was interrupted and not completed.
C.The S3 bucket has versioning enabled.
D.The backup was replicated to another AWS Region using S3 Cross-Region Replication.
AnswerB

Incomplete multipart upload results in a corrupt object.

Why this answer

When using the SAP HANA backint agent to back up to S3, the backup file is uploaded via multipart upload. If this multipart upload is interrupted and not completed, the resulting object in S3 will be incomplete, causing it to appear corrupt when attempting to restore. Option A is incorrect because S3 Transfer Acceleration improves transfer speed but does not affect file integrity.

Option C is incorrect because S3 Versioning creates multiple versions of the same object but does not corrupt data. Option D is incorrect because S3 Cross-Region Replication creates identical copies of the object, so it would not introduce corruption.

363
MCQeasy

Refer to the exhibit. A CloudTrail log entry shows that the user 'sapadmin' stopped an instance. Which of the following is true based on the log?

A.The StopInstances API call failed.
B.The user 'sapadmin' started the instance.
C.The user 'sapadmin' stopped the instance i-0abcdef1234567890.
D.The event was related to an RDS instance.
AnswerC

The log shows the event name and user.

Why this answer

The eventName is StopInstances and the user is sapadmin, meaning the user successfully stopped instance i-0abcdef1234567890. Options A and B are incorrect: A is wrong because there is no error code, indicating the API call succeeded; B is wrong because the eventName is StopInstances, not StartInstances. Option D is wrong because the eventSource is ec2.amazonaws.com, indicating an EC2 instance, not an RDS instance.

364
Multi-Selecthard

Which TWO components are required to set up SAP HANA System Replication (HSR) on AWS for high availability? (Choose TWO.)

Select 2 answers
A.A dedicated replication network interface with low latency.
B.Two EC2 instances in different Availability Zones.
C.An Amazon S3 bucket for storing backup logs.
D.Shared storage (e.g., Amazon EFS) for log replication.
E.A Network Load Balancer to distribute database connections.
AnswersA, B

A dedicated replication network interface ensures low latency and high throughput for HSR traffic, and is a required component.

Why this answer

SAP HANA System Replication (HSR) on AWS requires two EC2 instances in different Availability Zones (B) to provide failure domain isolation, and a dedicated replication network interface with low latency (A) to handle replication traffic separately from client traffic. Shared storage like Amazon EFS (D) is not required because HSR uses direct log shipping from primary to secondary instance, not a shared file system. The replication is done over the network, making shared storage unnecessary.

365
Multi-Selecteasy

Which THREE actions should be taken to secure an SAP environment running on AWS?

Select 3 answers
A.Open all ports to allow any traffic for flexibility.
B.Disable AWS CloudTrail to reduce costs.
C.Enable encryption at rest for Amazon EBS volumes.
D.Use security groups to restrict inbound and outbound traffic to necessary ports.
E.Use AWS Identity and Access Management (IAM) roles to grant permissions to EC2 instances.
AnswersC, D, E

Encryption protects data stored on EBS.

Why this answer

Options C, D, and E are correct. Option C (Enable encryption at rest for Amazon EBS volumes) protects data. Option D (Use security groups to restrict inbound and outbound traffic to necessary ports) controls network access.

Option E (Use AWS Identity and Access Management (IAM) roles to grant permissions to EC2 instances) avoids long-term credentials. Option A (Open all ports) is insecure. Option B (Disable AWS CloudTrail) reduces auditability.

366
MCQhard

During an SAP system refresh, the operations team needs to restore an SAP HANA database from an S3 backup to a new EC2 instance. The backup was created using SAP HANA Backint. Which AWS service is required to read the backup from S3?

A.Amazon EBS snapshots
B.AWS Backup
C.AWS Storage Gateway
D.SAP HANA Backint agent for Amazon S3
AnswerD

The SAP HANA Backint agent for Amazon S3 is the correct tool to read and restore backups made with Backint, as it handles the S3 integration natively.

Why this answer

SAP HANA Backint agent for Amazon S3. When a backup is created using SAP HANA Backint, the Backint agent is the component that integrates with Amazon S3 to read the backup data. It provides a certified interface for SAP HANA to directly access S3.

Option A is incorrect because Amazon EBS snapshots are block-level backups and are not used with Backint. Option B is incorrect because AWS Backup offers SAP HANA backup support but uses its own backup method, not the Backint interface. Option C is incorrect because AWS Storage Gateway is a hybrid storage service and is not designed for Backint operations.

367
MCQeasy

An SAP NetWeaver administrator needs to patch the operating system of an SAP application server running in an Auto Scaling group. The instances are behind an Application Load Balancer. What is the correct procedure to minimize downtime?

A.Use an Auto Scaling rolling update with lifecycle hooks to launch new instances from a patched AMI and gradually deregister old ones.
B.Detach one instance from Auto Scaling, patch it, test, then reattach.
C.Stop accepting traffic at the ALB, patch all instances manually, then re-enable traffic.
D.Terminate all instances at once and let Auto Scaling launch new ones with a patched AMI.
AnswerA

This minimizes downtime by replacing instances one at a time while maintaining capacity.

Why this answer

It uses Auto Scaling rolling updates with lifecycle hooks to replace instances one by one, minimizing downtime by ensuring new instances are healthy before old ones are terminated. Option B is wrong because manually detaching and patching does not leverage Auto Scaling's automation and can lead to inconsistent AMIs. Option C is wrong because stopping traffic at the ALB causes full downtime during patching.

Option D is wrong because terminating all instances at once causes full downtime, and the new instances may not be immediately available.

Exam trap

A common mistake is to think that stopping traffic to the ALB or manually patching instances is acceptable, but the correct approach uses Auto Scaling rolling updates with lifecycle hooks to automate the process and minimize downtime.

368
Multi-Selectmedium

Which TWO actions should be taken to improve the performance of an SAP HANA database running on AWS? (Choose TWO.)

Select 2 answers
A.Increase the size of the HANA instance to allocate more memory.
B.Enable termination protection on EC2 instances.
C.Use an Application Load Balancer to distribute traffic.
D.Use EBS-optimized instances to ensure dedicated network bandwidth for EBS.
E.Enable detailed monitoring on EC2 instances.
AnswersA, D

More memory improves HANA performance.

Why this answer

Options A and D are correct. Increasing memory (A) directly benefits SAP HANA which is memory-intensive. Using EBS-optimized instances (D) dedicates network bandwidth to EBS, improving I/O performance for HANA data volumes.

Option C (ALB) distributes traffic but does not help HANA performance. Option B (termination protection) and Option E (detailed monitoring) are not performance improvements.

369
Multi-Selecthard

An SAP administrator is troubleshooting an issue where the SAP system is not responding. The administrator checks the AWS Management Console and finds that the EC2 instance status checks are failing. Which three actions should the administrator take to recover the instance? (Choose THREE.)

Select 3 answers
A.Change the instance type
B.Check the system logs for errors
C.Attach a new EBS volume
D.Reboot the instance
E.Stop and start the instance
AnswersB, D, E

Logs help identify the cause of failure.

Why this answer

The administrator should first check the system logs (Option B) to gather diagnostic information about the failure. Rebooting the instance (Option D) can resolve transient issues without losing instance state. If the issue persists, stopping and starting the instance (Option E) migrates it to new underlying hardware, which can fix hardware-related failures.

Changing the instance type (Option A) does not address hardware issues causing status checks to fail. Attaching a new EBS volume (Option C) does not help with instance health issues.

370
Multi-Selecteasy

Which TWO of the following AWS services can be used to create and manage SAP system backups in an automated manner?

Select 2 answers
A.AWS Backup
B.AWS CloudTrail
C.AWS Systems Manager
D.AWS Lambda
E.AWS CloudFormation
AnswersA, C

AWS Backup is a fully managed backup service that can automate and centrally manage backups across AWS services, including EC2 instances and RDS databases used for SAP.

Why this answer

AWS Backup is a fully managed backup service that can automate and centrally manage backups across AWS services, including EC2 instances and RDS databases used for SAP. Option C is correct because AWS Systems Manager can automate backup tasks through its Automation capabilities, including creating snapshots and managing backup schedules for SAP systems. Option B is wrong because AWS CloudTrail is an auditing service that records API activity, not a backup service.

Option D is wrong because AWS Lambda is a compute service that can run custom code but is not a dedicated backup management service. Option E is wrong because AWS CloudFormation is an infrastructure-as-code service for provisioning resources, not for backup management.

371
Multi-Selecteasy

An SAP administrator is setting up backup for an SAP HANA database running on an EC2 instance. The database is 1 TB in size. Which TWO AWS services can be used to create a cost-effective backup strategy?

Select 2 answers
A.AWS Database Migration Service (DMS)
B.AWS Storage Gateway
C.AWS Backup
D.Amazon EBS snapshots
E.Amazon S3 with lifecycle policies
AnswersC, D

AWS Backup integrates directly with SAP HANA on EC2 via the Backint agent, enabling full, incremental, and differential backups to Amazon S3 without requiring separate backup software. This satisfies the 1 TB database size constraint by using S3’s low-cost storage tiers (e.g., S3 Standard-IA or Glacier) for long-term retention, reducing costs compared to EBS snapshots alone.

Why this answer

Options C and D are correct. AWS Backup is a managed service that can automate and centralize backups of EBS volumes, including those used by SAP HANA on EC2. Amazon EBS snapshots directly back up the volumes hosting the HANA database; incremental snapshots are cost-effective for a 1 TB database.

Option A (AWS DMS) is for database migration, not backup. Option B (AWS Storage Gateway) is for hybrid cloud storage integration, not directly for backing up HANA databases on EC2. Option E (Amazon S3 with lifecycle policies) is not directly used for HANA backups without additional tools like backint.

372
MCQmedium

A company runs SAP S/4HANA on AWS with a High Availability (HA) cluster spanning two Availability Zones (us-east-1a and us-east-1b). The cluster uses an Amazon FSx for NetApp ONTAP file system for the global transport directory. Recently, the cluster experienced a split-brain situation, leading to data corruption. The administrator wants to prevent this from recurring. The current setup uses a single FSx file system mounted on both cluster nodes. What should the administrator do to prevent split-brain?

A.Add a third cluster node in a third Availability Zone
B.Increase the memory on both EC2 instances
C.Configure a STONITH (Shoot The Other Node In The Head) mechanism using AWS Lambda
D.Set up cross-region replication for the FSx file system
AnswerC

STONITH ensures a failed node is terminated, preventing split-brain.

Why this answer

STONITH (Shoot The Other Node In The Head) is a fencing mechanism that ensures a failed node is forcefully isolated or powered off before the other node takes over, preventing split-brain scenarios in High Availability clusters. Option A is incorrect because adding a third node increases complexity without addressing the root cause of split-brain. Option B is incorrect because increasing memory does not affect cluster communication or fencing.

Option D is incorrect because cross-region replication is for disaster recovery, not for preventing split-brain.

373
MCQmedium

A company runs SAP on AWS using an SAP HANA database on an R5.8xlarge EC2 instance. The SAP application generates alerts about high disk I/O latency. Which AWS service should the administrator use to identify the root cause?

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

CloudWatch collects and monitors disk I/O latency metrics for EC2 instances.

Why this answer

Amazon CloudWatch provides detailed metrics for disk I/O, including latency. Option A is wrong because AWS Trusted Advisor provides best-practice checks, not real-time performance metrics. Option C is wrong because AWS Systems Manager automates operational tasks, not performance monitoring.

Option D is wrong because AWS Config is for resource compliance.

374
MCQmedium

An SAP Basis administrator is monitoring the health of an SAP HANA database on AWS. The administrator wants to receive alerts when the CPU utilization of the HANA instance exceeds 90% for 5 consecutive minutes. Which combination of AWS services should be used?

A.AWS X-Ray and Amazon CloudWatch Logs
B.AWS CloudTrail and AWS Lambda
C.AWS Config and Amazon Simple Email Service (SES)
D.Amazon CloudWatch metrics and CloudWatch Alarms with Amazon SNS
AnswerD

CloudWatch monitors CPU, alarms trigger on threshold, SNS sends notifications.

Why this answer

Amazon CloudWatch collects the CPU utilization metric for the HANA instance. A CloudWatch Alarm can be configured to trigger when the metric exceeds 90% for 5 consecutive minutes, and the alarm action sends a notification via Amazon SNS (e.g., email or SMS). Option A is incorrect because AWS X-Ray is for distributed tracing, and CloudWatch Logs is for log data, not for CPU metrics or alarms.

Option B is incorrect: AWS CloudTrail logs API calls and is not used for monitoring resource metrics; AWS Lambda could be used but is unnecessary for a simple threshold alarm. Option C is incorrect: AWS Config is for configuration compliance and auditing, not real-time metric monitoring; SES is an email service but not the standard integration for CloudWatch Alarms (SNS is used for notifications).

375
Multi-Selecthard

An administrator deploys the CloudFormation stack above. The EC2 instance launches but the s3fs mount fails. Which TWO actions are needed to fix the issue? (Choose two.)

Select 2 answers
A.Create an IAM role with permissions to access the S3 bucket and attach it to the EC2 instance.
B.Add an IAM instance profile to the EC2 instance resource in the CloudFormation template.
C.Modify the security group to allow outbound HTTPS traffic.
D.Ensure the S3 bucket is in the same region as the EC2 instance.
E.Add 'sudo' before the s3fs command in the UserData script.
AnswersA, B

s3fs requires IAM credentials; an instance profile provides them.

Why this answer

Options A and B are correct. The EC2 instance needs an IAM role with S3 bucket permissions (A) and the role must be attached via an IAM instance profile in the CloudFormation template (B). Option C is incorrect because outbound HTTPS is already allowed by default security group rules and S3 uses HTTPS.

Option D is incorrect because bucket region does not affect access; cross-region access works. Option E is incorrect because the UserData script runs as root, so 'sudo' is unnecessary and may cause the command to fail if sudo is not configured.

← PreviousPage 5 of 7 · 460 questions totalNext →

Ready to test yourself?

Try a timed practice session using only Sap Operations questions.