Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 3 out of 29 pages
Exam (elaborations)

AZ-104 RENEWAL ACTUAL EXAM 2026/2027 | Microsoft Azure Administrator Assessment Questions & Verified Answers | Pass Guaranteed - A+ Graded

Document preview thumbnail
Preview 3 out of 29 pages

Pass the AZ-104 Renewal assessment for Microsoft Certified: Azure Administrator Associate certification with this comprehensive guide featuring actual exam questions and verified answers. This A+ Graded resource covers all key Azure administration domains tested in the renewal assessment including Azure Active Directory (Azure AD) identity management, compute (virtual machines, VM scaling, availability sets), storage accounts and solutions (Azure Files, SAS, lifecycle management, encryption scopes), networking (VNet peering, NSGs, private DNS zones), governance (RBAC, Azure Policy, management groups), backup and disaster recovery (Recovery Services vaults, Azure Backup), and monitoring. The AZ-104 certification is role-based and must be renewed annually through a free online assessment available on Microsoft Learn only within the six months before expiration . Each question includes verified answers with rationales to help you understand core Azure concepts. With our Pass Guarantee, you can confidently complete your renewal. Download your complete AZ-104 Renewal Exam guide instantly!

Content preview

AZ-104 Renewal Exam
Questions and Answers
Edition


Verified Answers with Comprehensive Rationales




Microsoft Azure Administrator Associate

100 Questions | 6 Sections | Scenario-Based and Direct Recall

Aligned with 2026-2027 AZ-104 Renewal Assessment Requirements




1

,Section 1: Manage Azure Identities and Governance (20-25%)

Q1: You are the Azure Administrator for a company that uses Microsoft Entra ID (Azure AD). A user reports that
they have forgotten their password and cannot access the Azure portal. You need to ensure the user can reset their
own password. Which Microsoft Entra ID feature should you configure?
A. A. Multi-Factor Authentication (MFA)
B. B. Conditional Access policies
C. C. Self-Service Password Reset (SSPR) **[CORRECT]**
D. D. Privileged Identity Management (PIM)
Correct Answer: C
Rationale: Self-Service Password Reset (SSPR) is the correct Microsoft Entra ID feature that allows users to reset their own
passwords without contacting the helpdesk, reducing administrative overhead. Multi-Factor Authentication adds an additional
verification layer but does not enable password resets. Conditional Access policies control access conditions based on signals
like location or device compliance, not password recovery. Privileged Identity Management manages just-in-time access for
privileged roles and is unrelated to self-service password recovery for end users.

Q2: Your company has a management group named MG-Production that contains two subscriptions: Sub-A and
Sub-B. You need to assign the Reader role to a user for both subscriptions with a single assignment. At which
scope should you assign the role?
A. A. Subscription scope for each subscription individually
B. B. Management group scope on MG-Production **[CORRECT]**
C. C. Resource group scope on each resource group
D. D. Tenant scope
Correct Answer: B
Rationale: Assigning the Reader role at the management group scope (MG-Production) automatically grants read access to all
subscriptions and resource groups within that management group. This follows the RBAC scope hierarchy where permissions
flow downward: Management Group to Subscription to Resource Group to Resource. Assigning at each subscription
individually would require two separate assignments, which is less efficient. Tenant scope would grant read access to all
subscriptions in the entire tenant, which may exceed the intended scope. Resource group scope would only grant access at that
specific level and would not cover all resources in the subscriptions.

Q3: You need to prevent users from creating Azure storage accounts in the East US region within your
subscription. Which Azure Policy effect should you use?
A. A. Audit
B. B. Append
C. C. Deny **[CORRECT]**
D. D. DeployIfNotExists
Correct Answer: C
Rationale: The Deny effect is the correct Azure Policy effect to use when you need to actively block resource creation that
does not comply with your organizational standards. When a user attempts to create a storage account in the East US region,
the Deny policy will reject the request and return an error. The Audit effect would only log a warning but still allow the
creation. The Append effect adds fields to the resource during creation but cannot prevent resource creation.
DeployIfNotExists deploys required resources or configurations when a non-compliant resource is created, but it does not
prevent the initial creation.

Q4: A developer needs to upload files to an Azure Blob Storage container for 7 days. The developer should have
the minimum required permissions. Which type of Shared Access Signature (SAS) token should you create?
A. A. Account SAS with full service-level permissions
B. B. User delegation SAS with read and write permissions only **[CORRECT]**



2

, C. C. Service SAS with delete permissions included
D. D. Account SAS with object-level permissions only
Correct Answer: B
Rationale: A User Delegation SAS is secured by Microsoft Entra ID credentials and provides the most granular, least-privilege
access. It is the recommended approach for granting temporary access to blob storage because it does not require the storage
account key, reducing the risk of key compromise. An Account SAS grants broader service-level access and requires the
account key, which violates the principle of least privilege for this scenario. Including delete permissions or using full
service-level permissions would exceed the minimum requirements of uploading files for a temporary period.

Q5: You have an Azure subscription that contains a resource group named RG-App with multiple resources. You
need to ensure that no one can delete the resource group or any of its resources, but modifications to the resources
should still be allowed. Which type of resource lock should you apply?
A. A. CanNotDelete lock on the resource group **[CORRECT]**
B. B. ReadOnly lock on the resource group
C. C. CanNotDelete lock on each individual resource
D. D. ReadOnly lock on each individual resource
Correct Answer: A
Rationale: A CanNotDelete lock on the resource group prevents deletion of the resource group and all resources within it,
while still allowing modifications to the resources themselves. This lock is inherited by child resources. A ReadOnly lock
would prevent both deletion and modifications, which is too restrictive since the requirement states modifications should be
allowed. Applying CanNotDelete locks on each individual resource would be inefficient and harder to manage compared to a
single lock at the resource group level.

Q6: You are managing user licenses in Microsoft Entra ID. A user in the Sales department has been assigned a
Microsoft 365 E5 license, but they only need Microsoft 365 Business Basic features. What should you do to
optimize license usage?
A. A. Remove the user and recreate them with the correct license
B. B. Reassign the user to a Microsoft 365 Business Basic license in the Entra ID portal
**[CORRECT]**
C. C. Create a Conditional Access policy to limit the user's access
D. D. Use a group-based license assignment instead of direct assignment
Correct Answer: B
Rationale: Reassigning the user to the appropriate Microsoft 365 Business Basic license directly addresses the license
optimization requirement. In Microsoft Entra ID, administrators can change a user's license assignment from the Licenses
blade without deleting and recreating the user account. Removing and recreating the user would cause data loss and service
disruption. Conditional Access policies control access conditions but do not change the assigned license features. Group-based
licensing is a deployment strategy but does not resolve the immediate misassignment for this specific user.

Q7: Your organization uses Microsoft Entra ID with a B2B collaboration scenario. You need to add an external
user from a partner organization to access resources in your tenant. Which Entra ID feature should you use?
A. A. Dynamic groups
B. B. B2B collaboration (guest accounts) **[CORRECT]**
C. C. App registrations
D. D. Enterprise applications
Correct Answer: B
Rationale: Microsoft Entra B2B collaboration allows organizations to invite external users (guests) from partner organizations
to access resources in their tenant. The external user authenticates with their own organizational credentials, and you can
assign them roles and permissions just like internal users. Dynamic groups automatically populate based on user attributes but
are for internal users. App registrations and enterprise applications relate to application integration, not user-to-user
cross-tenant access scenarios.


3

Document information

Uploaded on
July 15, 2026
Number of pages
29
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
$17.50

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
NURSEEXAMITY
3.4
(97)
Sold
510
Followers
272
Items
6094
Last sold
12 hours ago


Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions