Select the correct answers for each question, including multiple-choice options when applicable, and click Submit to view your results. The quiz calculates your score and percentage, highlighting any incorrect questions to help you identify areas for improvement.
+
+
Click on the Answer button for the correct answer and its explanation.
+
+
If this practice exam has been helpful to you please share it with others and react to this below.
+
+
+
+{{content}}
+
+
+
+
+
Your Score:
+
Percentage: %
+
+
+
Please feel free to comment below if any information is inaccurate or if any answers need correction.
If you find the content of this website interesting and helpful, use the “Buy me a Coffee” link below to buy me a coffee
+
+
+
+
+
+
diff --git a/assets/css/exam.css b/assets/css/exam.css
new file mode 100644
index 0000000..cab2094
--- /dev/null
+++ b/assets/css/exam.css
@@ -0,0 +1,65 @@
+
+ol {
+ padding-left: 20px;
+}
+
+li {
+ margin-bottom: 20px;
+}
+
+ul {
+ list-style-type: none;
+ padding: 0;
+}
+
+ul li {
+ margin: 5px 0;
+}
+
+/* Checkbox Styling */
+input[type="checkbox"] {
+ accent-color: #4caf50; /* Green color for checkbox */
+ margin-right: 10px;
+ transform: scale(1.2); /* Slightly larger checkboxes */
+}
+
+/* Button Styling */
+button {
+ background-color: #4caf50;
+ color: white;
+ padding: 10px 20px;
+ border: none;
+ border-radius: 5px;
+ font-size: 16px;
+ cursor: pointer;
+ display: block;
+ margin: 20px auto;
+ transition: background-color 0.3s;
+}
+
+button:hover {
+ background-color: #45a049;
+}
+
+/* Result Display Styling */
+#result {
+ text-align: center;
+ font-size: 18px;
+ margin-top: 20px;
+}
+
+#result h2 {
+ font-size: 24px;
+ color: #4caf50;
+}
+
+#result .percentage {
+ font-size: 20px;
+ color: #ff9800;
+}
+
+.incorrect {
+ background-color: #f8d7da;
+ border: 1px solid #f5c2c7;
+ color: #842029;
+}
diff --git a/assets/js/exam.js b/assets/js/exam.js
new file mode 100644
index 0000000..ca285c5
--- /dev/null
+++ b/assets/js/exam.js
@@ -0,0 +1,55 @@
+document.addEventListener('DOMContentLoaded', () => {
+ // Dynamically add checkboxes to the list items
+ document.querySelectorAll('ol > li').forEach((question, index) => {
+ const options = question.querySelectorAll('ul li');
+ options.forEach(option => {
+ const optionText = option.textContent.trim();
+ if (/^[A-Z]\.\s/.test(optionText)) {
+ const checkbox = document.createElement('input');
+ checkbox.type = 'checkbox';
+ checkbox.name = `question-${index}`; // Unique identifier for each question
+ checkbox.value = optionText.charAt(0); // Use the letter as the value
+ option.prepend(checkbox);
+ }
+ });
+ });
+});
+
+function submitQuiz() {
+ let score = 0;
+ let totalQuestions = 0;
+
+ document.querySelectorAll('ol > li').forEach((question, index) => {
+ const correctAnswerText = question.querySelector('details p').textContent.match(/Correct answer:\s([A-Z, ]+)/i);
+ if (!correctAnswerText) return; // Skip if no correct answers are found
+
+ const correctAnswers = correctAnswerText[1]
+ .replace(/\s+/g, '') // Remove spaces
+ .split(/,|(?=[A-Z])/); // Split on commas or consecutive uppercase letters
+
+ const selectedOptions = Array.from(
+ document.querySelectorAll(`input[name="question-${index}"]:checked`)
+ ).map(input => input.value);
+
+ if (correctAnswers.length > 0) {
+ totalQuestions++;
+ }
+
+ const isCorrect =
+ selectedOptions.length === correctAnswers.length &&
+ correctAnswers.every(answer => selectedOptions.includes(answer));
+
+ if (isCorrect) {
+ score++;
+ question.classList.remove('incorrect'); // Remove incorrect class if correct
+ } else {
+ question.classList.add('incorrect'); // Highlight incorrect questions
+ }
+ });
+
+ const percentage = totalQuestions > 0 ? ((score / totalQuestions) * 100).toFixed(2) : 0;
+
+ document.getElementById('score').innerText = `${score} / ${totalQuestions}`;
+ document.getElementById('percentage').innerText = percentage;
+ document.getElementById('result').style.display = 'block';
+}
diff --git a/practice-exam/practice-exam-1.md b/practice-exam/practice-exam-1.md
index 56f5c8e..fba5d58 100644
--- a/practice-exam/practice-exam-1.md
+++ b/practice-exam/practice-exam-1.md
@@ -1,10 +1,8 @@
-# Practice Exam 1
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 1
1. AWS allows users to manage their resources using a web based user interface. What is the name of this interface?
- A. AWS CLI.
@@ -517,7 +515,3 @@ If this practice exam has been helpful to you please share it with others and re
Answer
Correct answer: D
-
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-10.md b/practice-exam/practice-exam-10.md
index 9834c12..ed66340 100644
--- a/practice-exam/practice-exam-10.md
+++ b/practice-exam/practice-exam-10.md
@@ -1,10 +1,8 @@
-# Practice Exam 10
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 10
1. Which of the following can an AWS customer use to launch a new Amazon Relational Database Service (Amazon RDS) cluster? (Select TWO)
- A. AWS Concierge.
@@ -517,6 +515,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: B
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-11.md b/practice-exam/practice-exam-11.md
index 7d1b8ed..83af52f 100644
--- a/practice-exam/practice-exam-11.md
+++ b/practice-exam/practice-exam-11.md
@@ -1,10 +1,8 @@
-# Practice Exam 11
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 11
1. How can a company reduce its Total Cost of Ownership (TCO) using AWS?
- A. By minimizing large capital expenditures.
@@ -518,6 +516,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: B, D
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-12.md b/practice-exam/practice-exam-12.md
index f5fd53e..8127459 100644
--- a/practice-exam/practice-exam-12.md
+++ b/practice-exam/practice-exam-12.md
@@ -1,10 +1,8 @@
-# Practice Exam 12
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 12
1. Which of the following components of the AWS Global Infrastructure consists of one or more discrete data centers interconnected through low latency links?
- A. Availability Zone
@@ -438,6 +436,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: D
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-13.md b/practice-exam/practice-exam-13.md
index 2bfa2ee..2ba7033 100644
--- a/practice-exam/practice-exam-13.md
+++ b/practice-exam/practice-exam-13.md
@@ -1,10 +1,8 @@
-# Practice Exam 13
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 13
1. The use of what AWS feature or service allows companies to track and categorize spending on a detailed level?
- A. Cost allocation tags
@@ -686,6 +684,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-14.md b/practice-exam/practice-exam-14.md
index b9be9e1..e181293 100644
--- a/practice-exam/practice-exam-14.md
+++ b/practice-exam/practice-exam-14.md
@@ -1,10 +1,8 @@
-# Practice Exam 14
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 14
1. Which storage service can be used as a low-cost option for hosting static websites?
- A. Amazon Glacier
@@ -847,6 +845,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-15.md b/practice-exam/practice-exam-15.md
index ef807ed..443bfa7 100644
--- a/practice-exam/practice-exam-15.md
+++ b/practice-exam/practice-exam-15.md
@@ -1,10 +1,8 @@
-# Practice Exam 15
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 15
1. How do customers benefit from Amazon's massive economies of scale?
- A. Periodic price reductions as the result of Amazon's operational efficiencies
@@ -886,6 +884,3 @@ If this practice exam has been helpful to you please share it with others and re
Reference:
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-16.md b/practice-exam/practice-exam-16.md
index 0bb5487..a64ecd9 100644
--- a/practice-exam/practice-exam-16.md
+++ b/practice-exam/practice-exam-16.md
@@ -1,10 +1,8 @@
-# Practice Exam 16
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 16
1. What will help a company perform a cost benefit analysis of migrating to the AWS Cloud?
- A. Cost Explorer
@@ -886,6 +884,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-17.md b/practice-exam/practice-exam-17.md
index 1f649b4..41211b7 100644
--- a/practice-exam/practice-exam-17.md
+++ b/practice-exam/practice-exam-17.md
@@ -1,10 +1,8 @@
-# Practice Exam 17
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 17
1. What time-savings advantage is offered with the use of Amazon Rekognition?
- A. Amazon Rekognition provides automatic watermarking of images.
@@ -824,6 +822,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-18.md b/practice-exam/practice-exam-18.md
index 106656f..036ecc6 100644
--- a/practice-exam/practice-exam-18.md
+++ b/practice-exam/practice-exam-18.md
@@ -1,10 +1,8 @@
-# Practice Exam 18
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 18
1. Under the AWS shared responsibility model, which of the following is an example of security in the AWS Cloud?
- A. Managing edge locations
@@ -781,6 +779,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-19.md b/practice-exam/practice-exam-19.md
index 74e3b6b..1919d26 100644
--- a/practice-exam/practice-exam-19.md
+++ b/practice-exam/practice-exam-19.md
@@ -1,10 +1,8 @@
-# Practice Exam 19
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 19
1. Which AWS offering enables customers to find, buy, and immediately start using software solutions in their AWS environment?
- A. AWS Config
@@ -752,6 +750,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-2.md b/practice-exam/practice-exam-2.md
index 0cc9699..8b172cf 100644
--- a/practice-exam/practice-exam-2.md
+++ b/practice-exam/practice-exam-2.md
@@ -1,10 +1,8 @@
-# Practice Exam 2
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 2
1. A global company with a large number of AWS accounts is seeking a way in which they can centrally manage billing and security policies across all accounts. Which AWS Service will assist them in meeting these goals?
- A. AWS Organizations.
@@ -517,7 +515,3 @@ If this practice exam has been helpful to you please share it with others and re
Answer
Correct answer: B
-
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-20.md b/practice-exam/practice-exam-20.md
index a37a801..c394421 100644
--- a/practice-exam/practice-exam-20.md
+++ b/practice-exam/practice-exam-20.md
@@ -1,10 +1,8 @@
-# Practice Exam 20
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 20
1. Which AWS service helps identify malicious or unauthorized activities in AWS accounts and workloads?
- A. Amazon Rekognition
@@ -728,6 +726,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-21.md b/practice-exam/practice-exam-21.md
index 07c6411..af083d4 100644
--- a/practice-exam/practice-exam-21.md
+++ b/practice-exam/practice-exam-21.md
@@ -1,10 +1,8 @@
-# Practice Exam 21
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 21
1. A user needs to quickly deploy a non-relational database on AWS. The user does not want to manage the underlying hardware or the database software. Which AWS service can be used to accomplish this?
- A. Amazon RDS
@@ -693,6 +691,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-22.md b/practice-exam/practice-exam-22.md
index f1c22df..7120f79 100644
--- a/practice-exam/practice-exam-22.md
+++ b/practice-exam/practice-exam-22.md
@@ -1,10 +1,8 @@
-# Practice Exam 22
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 22
1. A company operating in the AWS Cloud requires separate invoices for specific environments, such as development, testing, and production. How can this be achieved?
- A. Use multiple AWS accounts
@@ -658,6 +656,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-23.md b/practice-exam/practice-exam-23.md
index 484c33e..1734787 100644
--- a/practice-exam/practice-exam-23.md
+++ b/practice-exam/practice-exam-23.md
@@ -1,10 +1,8 @@
-# Practice Exam 23
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 23
1. A user is planning to migrate an application workload to the AWS Cloud. Which control becomes the responsibility of AWS once the migration is complete?
- A. Patching the guest operating system
@@ -707,6 +705,3 @@ If this practice exam has been helpful to you please share it with others and re
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-3.md b/practice-exam/practice-exam-3.md
index 9e6c009..e8153c4 100644
--- a/practice-exam/practice-exam-3.md
+++ b/practice-exam/practice-exam-3.md
@@ -1,10 +1,8 @@
-# Practice Exam 3
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 3
1. Where can you store files in AWS? (Choose TWO)
- A. Amazon EFS.
@@ -520,6 +518,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: B
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-4.md b/practice-exam/practice-exam-4.md
index 96b8f1e..a43b052 100644
--- a/practice-exam/practice-exam-4.md
+++ b/practice-exam/practice-exam-4.md
@@ -1,10 +1,8 @@
-# Practice Exam 4
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 4
1. A developer needs to set up an SSL security certificate for a client's eCommerce website in order to use the HTTPS protocol. Which of the following AWS services can be used to deploy the required SSL server certificates? (Choose TWO)
- A. Amazon Route 53.
@@ -524,6 +522,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: B
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-5.md b/practice-exam/practice-exam-5.md
index 83878e7..b7e656e 100644
--- a/practice-exam/practice-exam-5.md
+++ b/practice-exam/practice-exam-5.md
@@ -1,10 +1,8 @@
-# Practice Exam 5
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 5
1. A company is using EC2 Instances to run their e-commerce site on the AWS platform. If the site becomes unavailable, the company will lose a significant amount of money for each minute the site is unavailable. Which design principle should the company use to minimize the risk of an outage?
- A. Least Privilege.
@@ -522,6 +520,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: B, C
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-6.md b/practice-exam/practice-exam-6.md
index 2d6fa79..356743e 100644
--- a/practice-exam/practice-exam-6.md
+++ b/practice-exam/practice-exam-6.md
@@ -1,10 +1,8 @@
-# Practice Exam 6
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 6
1. Which of the following is true regarding the AWS availability zones and edge locations?
- A. Edge locations are located in separate Availability Zones worldwide to serve global customers.
@@ -518,6 +516,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: D
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-7.md b/practice-exam/practice-exam-7.md
index 5d81332..277577e 100644
--- a/practice-exam/practice-exam-7.md
+++ b/practice-exam/practice-exam-7.md
@@ -1,10 +1,8 @@
-# Practice Exam 7
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 7
1. Which of the following can help secure your sensitive data in Amazon S3? (Choose TWO)
- A. Delete the encryption keys once your data is encrypted.
@@ -520,6 +518,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: C
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-8.md b/practice-exam/practice-exam-8.md
index 8127596..b703f22 100644
--- a/practice-exam/practice-exam-8.md
+++ b/practice-exam/practice-exam-8.md
@@ -1,10 +1,8 @@
-# Practice Exam 8
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 8
1. What is the main benefit of attaching security groups to an Amazon RDS instance?
- A. Manages user access and encryption keys.
@@ -521,6 +519,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: C, D
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)
diff --git a/practice-exam/practice-exam-9.md b/practice-exam/practice-exam-9.md
index 1d6f337..18adde2 100644
--- a/practice-exam/practice-exam-9.md
+++ b/practice-exam/practice-exam-9.md
@@ -1,10 +1,8 @@
-# Practice Exam 9
-
-Click on the **Answer** button for the correct answer and its explanation.
-
-If this practice exam has been helpful to you please share it with others and react to this below.
-
---
+layout: exam
+---
+
+# Practice Exam 9
1. An administrator needs to rapidly deploy a popular IT solution and start using it immediately. Where can the administrator find assistance?
- A. AWS Well-Architected Framework documentation.
@@ -521,6 +519,3 @@ If this practice exam has been helpful to you please share it with others and re
Correct answer: B
-Please feel free to comment below if any information is inaccurate or if any answers need correction.
-
-[ Exam List](../practice-exam/exams.md)