Courseiva

Microsoft Identity and Access Administrator Associate (SC-300) — Questions 117

17 questions total · 1pages · All types, answers revealed

Page 1 of 1

1
MCQmedium

You need to delegate the ability to reset passwords for users in the 'Sales' department to a local helpdesk lead. You want to ensure the helpdesk lead cannot manage users in any other department. What should you create?

A.A dynamic security group containing all Sales users.
B.An Administrative Unit (AU) and add the Sales users to it.
C.A Custom Role with the 'microsoft.directory/users/password/update' permission.
D.An Access Package in Entra ID Governance.
AnswerB

Administrative Units are the correct tool for this requirement. By placing the Sales users into an AU, you can then assign the 'Password Administrator' role to the helpdesk lead scoped specifically to that AU. This limits their authority strictly to the members of that unit, protecting other users.

Why this answer

Administrative Units (AUs) provide a way to define a boundary for administrative delegation within a Microsoft Entra tenant. This is vital for large organizations that need to distribute management tasks to regional or departmental IT staff without granting them broad permissions across the entire directory, adhering to the principle of least privilege.

2
MCQeasy

You have a large Microsoft Entra ID tenant with 10,000 users. You need to delegate the ability to reset passwords for users in the 'Seattle' office to a local IT lead, without granting them administrative rights over users in other offices. What should you create?

A.A new Custom Role with a scope of the entire directory
B.A Dynamic Security Group containing the Seattle users
C.A Conditional Access policy targeting the Seattle location
D.An Administrative Unit containing the Seattle users
AnswerD

An Administrative Unit allows you to group specific users and then assign a Helpdesk Administrator role scoped specifically to that unit. This ensures the IT lead can only reset passwords for the Seattle-based users, fulfilling the requirement for regional delegation while following the security principle of least privilege.

Why this answer

Administrative Units (AUs) provide a way to define a boundary within a Microsoft Entra ID tenant for the purpose of delegating administrative permissions. This is essential for large organizations that need to distribute IT tasks to local administrators while maintaining the principle of least privilege across the entire global directory.

3
MCQmedium

Your company, Fabrikam, Inc., has acquired another firm. You need to invite 500 external contractors to your Microsoft Entra ID tenant to access specific applications. You want to ensure that these users are categorized as guests and cannot browse the full directory. Which feature should you configure first to enforce these restrictions tenant-wide?

A.Guest user access restrictions
B.Administrative Units
C.Conditional Access policies
D.Entitlement Management
AnswerA

Configuring guest user access to the most restrictive setting ensures that external users cannot perform directory lookups or see other users in the tenant. This is a foundational security step when onboarding large numbers of contractors who only require access to specific resource endpoints rather than the broader organizational structure.

Why this answer

External collaboration settings within Microsoft Entra ID allow administrators to define the level of access guest users have to the directory. By default, guests have limited permissions, but these can be further restricted to prevent them from seeing any directory information outside of their own profile. This ensures data privacy and limits the potential for internal discovery by external entities.

4
MCQmedium

You are managing a hybrid environment with Microsoft Entra Connect. You need to ensure that when a user's account is disabled in the on-premises Active Directory, the corresponding cloud account is also disabled immediately. What is the default behavior of Entra Connect regarding account status?

A.The cloud account is disabled during the next delta synchronization cycle.
B.The cloud account remains enabled until the administrator manually runs a full synchronization.
C.The cloud account is immediately disabled via a real-time webhook call to Entra ID.
D.The cloud account is deleted rather than disabled to save on license costs.
AnswerA

By default, Entra Connect synchronizes changes every 30 minutes. When a user is disabled on-premises, the 'userAccountControl' attribute change is detected during the next delta sync, and the sync engine updates the 'accountEnabled' attribute in Entra ID to 'false', effectively blocking the user from cloud resources.

Why this answer

Synchronizing account status is a critical security control. If an employee leaves the company, their access must be revoked across all systems. Microsoft Entra Connect handles this by mapping the 'userAccountControl' attribute from on-premises to the 'accountEnabled' property in the cloud, ensuring that the cloud identity reflects the local administrative state.

5
MCQmedium

An organization uses Microsoft Entra ID and needs to create external user accounts for contractors. The contractors should be invited by a select group of non-administrator employees without granting them full User Administrator privileges. Which administrative role should you assign to these employees?

A.User Administrator
B.Guest Inviter
C.Helpdesk Administrator
D.Directory Readers
AnswerB

The Guest Inviter role specifically empowers non-administrative users to invite external B2B guests into the Microsoft Entra tenant without granting broader directory management permissions, perfectly balancing administrative delegation and operational security.

Why this answer

Assigning the Guest Inviter role allows designated non-administrator employees to securely invite external B2B collaboration users without escalating their privileges to full User Administrator. This implements the principle of least privilege while enabling decentralized partner onboarding, reducing administrative overhead for core IT teams in enterprise environments.

6
MCQmedium

You are creating a dynamic user group in Microsoft Entra ID to automatically include all users from the Marketing department who are located in either London or Paris. Which syntax should you use for the membership rule?

A.(user.department -eq "Marketing") -and (user.city -in ["London", "Paris"])
B.(user.department -match "Marketing") -or (user.city -eq "London") -or (user.city -eq "Paris")
C.user.department -eq "Marketing" -and user.city -eq "London" -and user.city -eq "Paris"
D.user.department -contains "Marketing" -and user.city -contains "London, Paris"
AnswerA

The '-in' operator is the most efficient way to match a property against a specific list of multiple values within Entra ID dynamic membership rules. Combining this with the '-and' operator ensures that only users who meet both the department and city criteria are included in the group.

Why this answer

Dynamic groups use a rule-based system to manage membership automatically, which is essential for scaling identity management in large organizations. Mastering the syntax for these rules allows administrators to ensure that users receive the correct access to resources and applications based on their current attributes without manual intervention by the IT staff.

7
Multi-Selecthard

You are configuring External Collaboration settings in Microsoft Entra ID. You want to ensure that only specific partner domains can be invited as guests, and that guest users have the most restricted access to the directory. Which THREE settings should you configure?

Select 3 answers
A.Set 'Guest user access is restricted to properties and memberships of their own directory objects'.
B.Enable 'Allow invitations only to the specified domains (most restrictive)'.
C.Set 'Guest invite restrictions' to 'Only users assigned to specific admin roles can invite guest users'.
D.Disable the 'External user' account type in the User Settings blade.
E.Enable 'Self-service sign-up via user flows' for all external users.
AnswersA, B, C

This setting provides the highest level of restriction for guest users, preventing them from searching the directory or viewing memberships of groups they do not belong to. It ensures that guests only see information relevant to their own account, significantly reducing the risk of internal directory harvesting.

Why this answer

Securing external identities involves a multi-layered approach that controls both who can be invited and what those individuals can see once they are in the tenant. These settings are found in the External Collaboration settings and are vital for preventing data leakage and ensuring that guest access aligns with organizational security policies.

8
MCQhard

Refer to the exhibit. You are reviewing a custom role definition intended for a security auditor. What is the specific effect of the permission defined in the 'operations' array?

A.The role can view the definitions and allowed values of all custom security attributes in the tenant.
B.The role can read the actual values of custom security attributes assigned to users and other directory objects.
C.The role can assign new custom security attribute values to users but cannot modify existing ones.
D.The role can only read custom security attributes if they are also a member of the Attribute Definition Administrator role.
AnswerB

The 'values/read' action is the specific permission required to see the data stored within custom security attributes on Entra ID objects. Without this explicit permission, even users with high-level roles like Security Reader or Global Reader cannot see these sensitive fields, ensuring strict data privacy and access control.

Why this answer

Custom security attributes in Microsoft Entra ID allow for the storage of sensitive metadata that is not visible to standard users or even Global Administrators by default. Understanding the specific RBAC actions required to read or write these attributes is essential for maintaining a secure environment where sensitive data like 'Salary Grade' or 'Clearance Level' is protected.

9
MCQmedium

Your company uses Microsoft Entra Connect to sync identities from an on-premises Active Directory. You have a user named 'User1' who exists in both environments, but they are not currently linked. You need to perform a 'soft-match' to link them. Which attribute must be identical on both the on-premises and cloud objects?

A.ObjectGUID
B.DisplayName
C.proxyAddresses
D.EmployeeID
AnswerC

Entra Connect uses the primary SMTP address or the proxyAddresses attribute to perform a soft-match. If the SMTP address on-premises matches the 'mail' or 'proxyAddresses' attribute in Entra ID, the sync engine will link the two accounts, assuming no other hard-link (ImmutableID) is already present.

Why this answer

Soft-matching is a critical process for merging existing cloud identities with on-premises accounts during the initial setup of directory synchronization. It prevents the creation of duplicate accounts and ensures that users maintain their existing cloud data and permissions while transitioning to a synchronized identity model managed from the local Active Directory environment.

10
MCQeasy

You need to perform a bulk invite of 50 guest users from a partner company using a CSV file in the Microsoft Entra admin center. Which column is mandatory in the CSV file for the bulk invitation process to succeed?

A.First name
B.Redirect URL
C.User principal name
D.Email address to invite
AnswerD

The 'Email address to invite' is the most critical field because it identifies where the invitation will be sent and serves as the basis for the guest's identity. Without this address, Entra ID cannot initiate the B2B communication or establish the link between the external user and the local tenant.

Why this answer

Bulk operations are a key skill for identity administrators to handle large-scale changes efficiently. For B2B invitations, Entra ID requires specific identifiers to send the invitation emails and create the guest user objects. Knowing the required schema for these CSV files prevents upload errors and ensures a smooth onboarding experience for external partners.

11
MCQeasy

You accidentally delete a cloud-only user account from the Microsoft Entra admin center. You need to restore the user and their associated group memberships. Within how many days must you perform the restoration before the user is permanently deleted?

A.14 days
B.30 days
C.60 days
D.90 days
AnswerB

Microsoft Entra ID retains deleted users in a soft-deleted state for exactly 30 days. During this time, the account can be restored with its original SID, properties, and group memberships intact. After 30 days, the user is permanently removed from the directory and the data becomes unrecoverable.

Why this answer

Microsoft Entra ID implements a 'soft-delete' state for user accounts to protect against accidental data loss. During this period, the user object and most of its properties, including group memberships, can be fully recovered. Once this window expires, the data is purged from the system and cannot be retrieved.

12
Multi-Selectmedium

You are managing guest users in Microsoft Entra ID. Which TWO statements accurately describe the properties and behaviors of guest user accounts compared to member user accounts?

Select 2 answers
A.Guest users have the 'UserType' attribute set to 'Guest' by default.
B.Guest users always authenticate against the inviting tenant's identity provider.
C.Guest users can be converted to members by changing their 'UserType' attribute.
D.Guest users are automatically added to the 'All Users' dynamic group.
E.Guest users cannot be assigned to Administrative Units.
AnswersA, C

The 'UserType' attribute is the primary way Microsoft Entra ID distinguishes between internal members and external guests. By default, any user invited through the B2B collaboration process is assigned the 'Guest' value, which triggers different default permission levels and access behaviors within the tenant.

Why this answer

Guest accounts (B2B collaboration) are fundamentally different from standard member accounts in how they are managed and how they interact with the directory. Understanding these nuances, such as the UserType attribute and authentication source, is essential for implementing secure external access and managing the identity lifecycle effectively.

13
Multi-Selectmedium

You want to allow external users to sign in to your Microsoft Entra tenant using their Google accounts. Which TWO steps are required to configure Google federation?

Select 2 answers
A.Create a Google Cloud Platform project and obtain a Client ID and Client Secret.
B.Enable the 'Email one-time passcode for guests' setting in the Entra admin center.
C.Configure Google as an identity provider in the 'External Identities' section of Entra ID.
D.Assign a Microsoft Entra ID P2 license to every Google user who will sign in.
E.Configure a custom domain in Entra ID that matches the @gmail.com suffix.
AnswersA, C

To enable federation, you must register your Entra ID tenant as an application within the Google Developers Console. This process generates the necessary OAuth 2.0 credentials (Client ID and Secret) that Entra ID uses to communicate with Google's identity services and verify the identity of the signing-in user.

Why this answer

Federating with social identity providers like Google improves the onboarding experience for B2B guests by allowing them to use familiar credentials. This reduces the need for them to manage a separate password for your tenant and leverages the security features of their existing identity provider, such as Google's own multi-factor authentication.

14
MCQmedium

You are assigning a Microsoft 365 Business Premium license to a new user. The assignment fails with an error stating that the usage location is not set. Why is the 'Usage Location' attribute mandatory for license assignment?

A.It determines the physical data center where the user's mailbox will be hosted.
B.Microsoft uses it to comply with local regulations and verify service availability in the user's region.
C.It is used to automatically set the user's time zone and language in Outlook.
D.It is required for the user to be able to register for Multi-Factor Authentication.
AnswerB

Microsoft is legally required to ensure that the services provided in a specific license are authorized for use in the user's country. The 'Usage Location' attribute allows Entra ID to validate that the assigned services meet regional compliance standards and tax requirements before the license is activated.

Why this answer

The 'Usage Location' attribute is not just a metadata field; it has legal and functional implications for Microsoft services. Microsoft must comply with local laws and regulations regarding data residency and service availability, which varies by country. Setting this correctly is a prerequisite for any license-based resource provisioning in Entra ID.

15
Multi-Selectmedium

A company wants to implement advanced identity management features for their users. You are evaluating the differences between Microsoft Entra ID P1 and P2 licenses. Which TWO features are ONLY available with the Microsoft Entra ID P2 license?

Select 2 answers
A.Self-Service Password Reset (SSPR) for cloud users
B.Conditional Access based on user location and device state
C.Microsoft Entra ID Protection (Risk-based Conditional Access)
D.Application Proxy for accessing on-premises web applications
E.Privileged Identity Management (PIM)
AnswersC, E

Identity Protection, which includes the ability to trigger policies based on 'User Risk' and 'Sign-in Risk' levels (High, Medium, Low), is a premium feature exclusive to the P2 license. It uses machine learning to detect compromised credentials and anomalous sign-in patterns to automatically protect the organization's identities.

Why this answer

Microsoft Entra ID P2 includes all P1 features plus advanced identity protection and governance capabilities. Understanding these differences is crucial for administrators to ensure they have the necessary licensing for high-security environments, specifically regarding automated risk detection and administrative access control through Privileged Identity Management.

16
Multi-Selecthard

You need to store specialized metadata for users in Microsoft Entra ID that is not available in the standard user profile attributes. This metadata must be accessible via the Microsoft Graph API and must support fine-grained access control so only specific administrators can read or write the data. Which THREE steps are required to implement Custom Security Attributes?

Select 3 answers
A.Assign the Attribute Definition Administrator role
B.Configure a new Schema Extension using the Azure AD Graph API
C.Define an Attribute Set
D.Create a new Directory Extension in Microsoft Entra Connect
E.Add Attribute Definitions to the Attribute Set
AnswersA, C, E

To create and manage the structure of custom security attributes, a user must have the Attribute Definition Administrator role. This role is distinct from Global Administrator, ensuring that attribute schema management is a delegated, specific task that follows the principle of least privilege within the Microsoft Entra ID environment.

Why this answer

Custom security attributes offer a way to extend the user schema with highly secure, controlled data. Unlike extension attributes, these support RBAC for the attributes themselves. This allows sensitive data, like employee IDs or clearance levels, to be stored on the user object while strictly limiting who can interact with that specific metadata.

17
Multi-Selecthard

You need to configure B2B collaboration settings in Microsoft Entra ID to restrict external access. The solution must meet the following requirements: 1. Allow users to invite guests only from the domain 'fabrikam.com'. 2. Prevent guests from searching the directory for other users. Which TWO settings should you configure?

Select 2 answers
A.Set External user read permissions to 'Guest users are limited to properties and memberships of their own directory objects'.
B.Add 'fabrikam.com' to the Collaboration restrictions list and set the policy to 'Allow invitations only to the specified domains'.
C.Configure a Cross-tenant access policy for 'fabrikam.com' with B2B direct connect enabled.
D.Enable the 'Member users and users assigned to specific admin roles can invite guest users' setting.
E.Create a Conditional Access policy that blocks all external users except those from 'fabrikam.com'.
AnswersA, B

This setting is the most restrictive level of directory visibility for external users in Entra ID. It prevents guests from browsing the full list of users, groups, or other directory objects, effectively isolating them to only the specific resources and profiles they are directly associated with for work.

Why this answer

B2B collaboration settings provide granular control over how external users interact with your directory. Restricting invitations to specific domains is a common security requirement for sensitive environments. Similarly, limiting directory search capabilities for guests prevents data harvesting and ensures that external users can only interact with the specific people or resources they have been assigned.

Page 1 of 1

All pages