Posts

Showing posts from March, 2025

Project Web Design Assignment

Image
  Assignment-3 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Employee Information Form</title> </head> <body>     <div style="width:30%; margin: auto;">         <form action="#" method="POST">             <fieldset>                 <legend>Employee Details</legend>                                 <!-- Name Field -->                 <label for="name">Name:</label>                 <input type="text" id="name" name="name" required><br><br>           ...

AWS Cloud Practitioner Exam Preparation-1

Image
  1.        Which AWS service or feature can be used to restrict the individual API actions that users and roles in each member account can access? a.        Amazon Macie b.       AWS organizations c.        AWS shield d.       AWS IAM Correct answer AWS Organizations Explanatin: AWS Organizations offers Service control policies (SCPs) which are a type of organization policy that you can use to manage permissions in your organization. SCPs offer central control over the maximum available permissions (API actions) for all accounts in your organization. SCPs help you to ensure your accounts stay within your organization’s access control guidelines. SCPs are available only in an organization that has all features enabled. CORRECT: "AWS Organizations" is the correct answer. INCORRECT: "Amazon Macie" is incorrect. Amazon Ma...