PAS-C01 Operations and Maintenance Practice Question
Exhibit
Refer to the exhibit.
{
"AWSTemplateFormatVersion": "2010-09-09",
"Resources": {
"SAPApplicationServer": {
"Type": "AWS::EC2::Instance",
"Properties": {
"ImageId": "ami-0abcdef1234567890",
"InstanceType": "r5.2xlarge",
"SecurityGroupIds": ["sg-0123456789abcdef0"],
"UserData": {
"Fn::Base64": "#!/bin/bash\n yum install -y httpd"
}
}
}
}
}The operations team deploys the CloudFormation template above. After the stack creation completes, the EC2 instance is launched but the SAP application is not running. What is the most likely reason?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The UserData script only installs httpd, not the SAP application
The UserData script installs httpd (Apache), not the SAP application. The template does not include any steps to install or start the SAP application. The security group is referenced but not shown; it is likely correct. The instance type is appropriate for SAP. The AMI ID is valid.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
The UserData script only installs httpd, not the SAP application
Why this is correct
UserData does not install SAP, so it is not running.
- ✗
The security group does not allow inbound traffic to the SAP application port
Why it's wrong here
The security group is not shown, but the question is about why SAP is not running, not connectivity.
- ✗
The instance type is not suitable for SAP applications
Why it's wrong here
r5.2xlarge is suitable for SAP.
- ✗
The AMI ID is incorrect
Why it's wrong here
No evidence suggests the AMI is incorrect.
Go deeper
Related to this question
About these practice questions
This PAS-C01 question is part of Courseiva's 1,616-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This PAS-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PAS-C01 exam.