SECTION F — Users
Q63. What is a Microsoft Entra ID User?
A Microsoft Entra ID user is an identity object that represents a person or user account within a Microsoft Entra tenant.
Organizations use user identities to provide employees, administrators, guests, and other users with access to applications, services, and resources according to their assigned permissions and policies.
For example:
john@contoso.com
can represent a user identity in the organization’s Microsoft Entra tenant.
A Microsoft Entra user can be created directly in the cloud or, in a hybrid identity environment, synchronized from an on-premises Active Directory environment.
Q64. What information does a User object contain?
A Microsoft Entra user object contains information and properties associated with the identity.
Depending on the user and configuration, this can include:
- Display name
- User principal name (UPN)
- Object ID
- Tenant information
- Account status
- Authentication-related information
- Group memberships
- Assigned licenses
- Directory roles
- Application access
- Device associations
- Other directory attributes
For example:
Microsoft Entra User
│
├── Display Name
│ John Smith
│
├── UPN
│ john@contoso.com
│
├── Object ID
│ Unique identifier
│
├── Group Memberships
│ IT-Users
│ Microsoft-365-Users
│
└── Access
Microsoft 365
Applications
Azure resources
The exact properties available depend on the identity type and Microsoft Entra configuration.
Q65. What is a User Principal Name (UPN)?
The User Principal Name (UPN) is a sign-in name associated with a user.
For example:
john@contoso.com
The UPN typically follows the format:
username@domain
The domain portion must be an appropriate domain associated with the tenant.
UPNs are commonly used when users sign in to Microsoft cloud services.
Q66. What types of Microsoft Entra users can you encounter?
From an administrator’s perspective, two important categories are:
1. Member User
A Member user generally represents a user belonging to the organization’s tenant.
For example:
- Employees
- Internal administrators
- Organizational users
A member user might have:
john@contoso.com
as their sign-in name.
2. Guest User
A Guest user is typically an external identity invited to collaborate with an organization.
For example, a company might invite:
partner@example.com
to access a specific application, SharePoint site, or other resource.
Guest users are commonly associated with Microsoft Entra External ID / B2B collaboration scenarios.
We’ll cover external identities in more detail later in this guide.
Q67. Difference between Cloud-only User vs Synchronized User
Another important distinction is where the user identity is managed.
Cloud-only User
A cloud-only user is created and managed directly in Microsoft Entra ID.
For example:
Administrator
│
▼
Microsoft Entra ID
│
▼
Creates User
│
▼
Cloud-only User
The identity does not originate from an on-premises Active Directory synchronization process.
Synchronized User
A synchronized user originates from an organization’s on-premises Active Directory and is synchronized to Microsoft Entra ID using a supported hybrid identity solution.
For example:
On-premises Active Directory
│
│ Synchronization
▼
Microsoft Entra ID
│
▼
Cloud representation
of the user
This allows organizations to maintain a hybrid identity environment.
We’ll cover Microsoft Entra Connect and synchronization in much greater detail later in the article.
Q68. Difference between User Object vs User Account
These terms are often used interchangeably, but there is a useful distinction.
A user object is the directory object representing the identity in Microsoft Entra ID.
A user account generally refers to the identity and its ability to sign in and access resources.
For practical administration, you’ll often hear:
“Create a user.”
This means creating the appropriate user object in Microsoft Entra ID.
Q69. How does a Microsoft Entra User get access to resources?
Creating a user does not automatically give the user access to everything in the organization.
Access can be determined through various mechanisms, such as:
- Group membership
- Application assignments
- Microsoft Entra roles
- Azure RBAC
- Conditional Access
- Resource permissions
- Licenses
- Application-specific authorization
For example:
John
│
▼
Microsoft Entra User
│
├── Member of IT Group
│
├── Assigned Microsoft 365 License
│
├── Assigned Application
│
└── Azure RBAC Role
│
▼
Authorized Resources
This is an important concept:
Having an identity does not automatically mean having permission to access every resource.
Q70. What happens when a user is disabled?
An administrator can disable a user’s ability to sign in.
This can be useful when:
- An employee leaves the organization
- An account is suspected of compromise
- Access needs to be temporarily suspended
- Security policy requires the account to be blocked
Disabling an account and deleting an account are not the same operation.
A disabled user remains in the directory but cannot sign in while the account is disabled.
Real-world example
Imagine Contoso Corporation has 2,000 employees.
The organization uses Microsoft Entra ID for identity management.
A new employee, Sarah, joins the IT department.
Her account might be:
Sarah@contoso.com
The administrator can:
- Create or synchronize her identity.
- Add her to appropriate groups.
- Assign required licenses.
- Provide access to necessary applications.
- Apply appropriate security policies.
- Assign administrative permissions only if required.
When Sarah leaves the company, the organization can disable her account and remove or adjust her access according to its offboarding process.
This demonstrates that identity management involves the entire identity lifecycle, not simply creating a username and password.
⚠️ Common Interview Mistakes
Mistake 1:
“Every Microsoft Entra user is created directly in the cloud.”
❌ Incorrect.
Users can also originate from on-premises Active Directory and be synchronized to Microsoft Entra ID.
Mistake 2:
“Creating a user automatically gives them access to Azure.”
❌ Incorrect.
Access depends on roles, permissions, group membership, resource permissions, and applicable policies.
Mistake 3:
“Guest users are normal employees.”
❌ Not necessarily.
Guest users generally represent external identities participating in collaboration or external-access scenarios.
Mistake 4:
“Deleting a user and disabling a user are the same.”
❌ Incorrect.
Disabling prevents sign-in while retaining the user object; deletion removes the user object from the directory, subject to Microsoft’s recovery mechanisms and retention behavior.
🎯 Interview Tip
If asked:
“What is a Microsoft Entra ID user?”
A strong answer is:
“A Microsoft Entra ID user is an identity object representing a person or user account within a Microsoft Entra tenant. Users can be cloud-only or synchronized from on-premises Active Directory, and their access to applications and resources is controlled through permissions, groups, roles, licenses, and security policies.”
If the interviewer asks:
“What is the difference between a cloud-only and synchronized user?”
Answer:
“A cloud-only user is created and managed directly in Microsoft Entra ID, whereas a synchronized user originates from on-premises Active Directory and is synchronized to Microsoft Entra ID through a hybrid identity solution.”
Quick Revision
Microsoft Entra User = Identity object representing a user in the tenant
Remember the two important sources:
Cloud-only → Created in Microsoft Entra ID
Synchronized → Originates from on-premises AD and is synchronized to Microsoft Entra ID
And remember:
Identity ≠ Permission
A user can exist in the directory without automatically having access to every resource.
SECTION G — Groups
Q71. What is a Microsoft Entra ID Group?
A Microsoft Entra ID group is a collection of users or other supported directory objects that can be managed together.
Groups help administrators simplify access management, application assignment, licensing, and organization of identities.
Instead of assigning permissions or access individually to hundreds or thousands of users, an administrator can assign the appropriate access to a group and manage membership centrally.
Simple example
Suppose a company has 500 employees in its IT department.
Instead of assigning access to an application one user at a time:
Application
│
├── John
├── Sarah
├── David
├── Ahmed
├── Priya
└── ... 500 users
the administrator can create:
IT-Employees Group
│
├── John
├── Sarah
├── David
├── Ahmed
└── Priya
│
▼
Application Access
Now access can be managed through the group.
Q72. What are Microsoft Entra groups used for?
Groups can be useful for several administrative purposes.
1. Access Management
Groups can help manage access to applications and resources.
For example:
Finance Users → Finance Application
Instead of assigning application access individually, administrators can manage membership in the Finance group.
2. Application Assignment
Organizations can assign supported enterprise applications to groups.
For example:
Salesforce
│
▼
Sales Group
│
├── John
├── Sarah
└── David
Members of the appropriate group can receive access according to the application’s configuration.
3. Group-Based Licensing
Organizations can use groups to assign supported Microsoft licenses.
For example:
Microsoft 365 License
│
▼
Microsoft 365 Users Group
│
├── John
├── Sarah
└── David
When users are added to or removed from the group, license assignment can be managed automatically according to the group’s configuration.
4. Conditional Access
Groups can be used to target users in Conditional Access policies.
For example, an organization may have:
IT Administrators Group
and create a Conditional Access policy targeting that group.
This can be useful when an organization wants stronger authentication requirements for administrators.
We will cover Conditional Access in detail later in this guide.
Q73. What types of groups are available?
Two important Microsoft Entra group types are:
Security Groups
Security groups are commonly used to manage access to resources and applications.
For example:
IT-Admins
Finance-Users
HR-Employees
Security groups can be used in many identity and access management scenarios.
Microsoft 365 Groups
Microsoft 365 Groups are designed primarily for collaboration across Microsoft 365 services.
Depending on the configuration, a Microsoft 365 Group can be associated with services such as:
- Outlook
- SharePoint
- Microsoft Teams
- Planner
The purpose is different from simply using a security group for access control.
Q74. Difference between Security Group vs Microsoft 365 Group
This is a common interview question.
| Security Group | Microsoft 365 Group |
|---|---|
| Primarily used for access and permission management | Primarily designed for collaboration |
| Can be used to manage access to resources | Provides a collaboration membership model |
| Commonly used with applications and access policies | Integrates with Microsoft 365 collaboration services |
| Can be used for group-based licensing | Can also be used for supported group-based licensing scenarios |
Simple way to remember
Security Group → Access
Microsoft 365 Group → Collaboration
There are cases where a Microsoft 365 Group can also participate in access-related scenarios, so this is a useful rule of thumb rather than an absolute limitation.
Q75. Assigned vs Dynamic Group Membership
Microsoft Entra groups can use different membership approaches.
Assigned Membership
With assigned membership, an administrator directly adds or removes users from the group.
Example:
IT Group
│
├── John ← Added manually
├── Sarah ← Added manually
└── David ← Added manually
The administrator manages membership directly.
Dynamic Membership
With dynamic membership, Microsoft Entra ID automatically evaluates users against membership rules.
For example, an organization might have a rule based on an attribute such as:
Department = Finance
Users who meet the rule can automatically become members of the group.
User Attributes
│
▼
Membership Rule
│
▼
Microsoft Entra ID
│
▼
Dynamic Group
│
├── Finance User 1
├── Finance User 2
└── Finance User 3
This can be especially useful in large organizations where manually maintaining group membership would be difficult.
Q76. Can Groups Contain Other Groups?
Microsoft Entra ID supports certain group nesting scenarios, but the exact behavior and supported combinations depend on the group type and feature being used.
For interview purposes, remember that group nesting is not universally interchangeable across every Microsoft Entra group scenario.
If an interviewer asks about nested groups, be specific about the group type and the resource or application consuming the membership.
Real-World Example
Imagine an organization has:
1,000 employees
and three departments:
- IT
- Finance
- HR
The administrator creates:
IT-Users
Finance-Users
HR-Users
The Finance application can then be assigned to:
Finance-Users
instead of individually assigning 200 Finance employees.
If an employee moves from Finance to IT, the administrator can update the appropriate group membership.
With dynamic groups, membership may even be automatically updated based on defined user attributes.
This demonstrates one of the major benefits of groups:
Manage access based on groups rather than individual users wherever appropriate.
Q77. Group-Based Access vs Individual Access
Consider an organization with 5,000 employees.
Individual approach
Application
├── User 1
├── User 2
├── User 3
├── ...
└── User 5000
This can become difficult to manage.
Group-based approach
Application
│
▼
Department Group
│
▼
Users
This makes administration more scalable and can make access reviews and changes easier.
However, administrators should still follow least privilege and avoid giving groups broader access than necessary.
⚠️ Common Interview Mistakes
Mistake 1:
“A group is only used to organize users.”
❌ Too limited.
Groups can also be used for access management, application assignment, licensing, Conditional Access targeting, and other scenarios.
Mistake 2:
“Security groups and Microsoft 365 groups are exactly the same.”
❌ Incorrect.
They have different primary purposes and capabilities.
Mistake 3:
“Dynamic groups are manually maintained.”
❌ Incorrect.
Dynamic membership is evaluated automatically based on configured membership rules.
Mistake 4:
“Giving a group access means every user automatically has unrestricted access to everything.”
❌ Incorrect.
Access depends on what permission or assignment was given to the group and what other policies apply.
🎯 Interview Tip
If asked:
“What is a Microsoft Entra ID group?”
A strong answer would be:
“A Microsoft Entra ID group is a collection of users or other supported directory objects that can be managed together. Groups are commonly used to simplify access management, application assignment, licensing, and policy targeting. Microsoft Entra supports security groups and Microsoft 365 groups, and group membership can be assigned directly or managed dynamically using rules.”
If asked:
“What is the advantage of using groups?”
Answer:
“Groups make access management more scalable. Instead of assigning access individually to many users, administrators can manage access through group membership and then control membership centrally.”
Quick Revision
Group = Collection of identities managed together
Remember:
Security Group → Primarily access management
Microsoft 365 Group → Primarily collaboration
Assigned Membership → Administrator manages membership
Dynamic Membership → Rules determine membership
The key benefit is:
Manage access through groups instead of managing every user individually.
SECTION H — Object IDs / Directory Objects
Q78. What is an Object ID in Microsoft Entra ID?
An Object ID is a unique identifier assigned to a directory object within a Microsoft Entra tenant.
A directory object can be a:
- User
- Group
- Application-related object
- Service principal
- Device
- Other supported directory object
The Object ID is typically represented as a GUID.
For example:
8f7c1234-56ab-4d89-9012-abcdef123456
The Object ID allows Microsoft Entra ID and applications to uniquely identify a particular object.
Simple Example
Suppose an organization has a user:
Name: John Smith
UPN: john@contoso.com
Tenant ID:
11111111-2222-3333-4444-555555555555
Object ID:
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee
The two IDs identify different things:
Microsoft Entra Environment
│
│
Tenant ID
│
▼
Identifies the tenant
│
│
▼
User: John
│
▼
Object ID
│
▼
Identifies John's
directory object
So:
Tenant ID identifies the tenant.
Object ID identifies a specific object inside that tenant.
Q79. Why is Object ID important?
Administrators and developers may use Object IDs when working with:
- Microsoft Entra users
- Groups
- Applications
- Service principals
- Devices
- Microsoft Graph
- Azure CLI
- PowerShell
- Automation
- Access-control configurations
An Object ID is useful because names and other properties can change, while the unique identifier provides an unambiguous way to reference the object.
For example, two users might have similar display names:
John Smith
John Smith
Their Object IDs will still be different.
Q80. Object ID vs User Principal Name (UPN)
These are not the same thing.
UPN
Example:
john@contoso.com
The UPN is a user sign-in name.
Object ID
Example:
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee
The Object ID is the unique identifier of the directory object.
| UPN | Object ID |
|---|---|
| Human-readable identity/sign-in name | Unique object identifier |
| Can potentially be changed | Used as a stable unique identifier for the object |
Example: john@contoso.com | Example: GUID |
Q81. Difference between Object ID vs Tenant ID
This is another common interview question.
| Tenant ID | Object ID |
|---|---|
| Identifies the Microsoft Entra tenant | Identifies a specific directory object |
| One per tenant | Each directory object has its own identifier |
| Identifies the identity environment | Identifies an object within that environment |
| Example: GUID | Example: GUID |
Think of it as:
Tenant ID → Which organization/environment?
Object ID → Which object?
Real-World Example
Suppose you are creating an automation script that needs to modify a specific user.
Using only:
John Smith
would not necessarily be sufficient because display names are not guaranteed to be unique.
The script can instead reference the user’s Object ID.
This gives the automation an unambiguous identifier for the directory object.
Similarly, administrators and developers may encounter Object IDs when working with Microsoft Graph and other Microsoft cloud APIs.
⚠️ Common Interview Mistakes
Mistake 1:
“Object ID is the user’s username.”
❌ Incorrect.
The UPN is commonly used as a sign-in name; the Object ID uniquely identifies the directory object.
Mistake 2:
“Every user in different tenants has the same Object ID.”
❌ Incorrect.
Object IDs are unique identifiers for objects within their respective directory/tenant contexts.
Mistake 3:
“Tenant ID and Object ID identify the same thing.”
❌ Incorrect.
Tenant ID → Tenant
Object ID → Directory object
🎯 Interview Tip
If asked:
“What is an Object ID in Microsoft Entra ID?”
A strong answer would be:
“An Object ID is a unique identifier assigned to a directory object in Microsoft Entra ID, such as a user, group, device, or service principal. It is typically represented as a GUID and is used to uniquely reference that object in administrative, API, and automation scenarios.”
If asked:
“What is the difference between Object ID and Tenant ID?”
Answer:
“Tenant ID identifies the Microsoft Entra tenant, while Object ID identifies a specific directory object within the tenant.
Quick Revision
Tenant ID → Identifies the tenant
Object ID → Identifies a directory object
UPN → Commonly used as a user’s sign-in name
The easiest way to remember:
Tenant = Environment
Object = Identity/resource inside the environment
Q82. What are Directory Objects in Microsoft Entra ID?
Directory objects are the identities and resources that are represented and managed within a Microsoft Entra directory.
They are the individual objects that make up an organization’s identity environment.
Common examples include:
- 👤 Users
- 👥 Groups
- 📱 Devices
- 📦 Applications
- ⚙️ Service principals
- 🏢 Organizational objects and other supported identity resources
Each directory object has properties that Microsoft Entra ID uses to identify and manage it.
Many objects also have a unique Object ID.
Simple Example
Imagine that Contoso Corporation has a Microsoft Entra tenant.
Its directory might contain:
Contoso
│
▼
Microsoft Entra Directory
│
┌─────────┼──────────┐
▼ ▼ ▼
Users Groups Devices
│ │
▼ ▼
John IT-Admins
│
▼
Applications
│
▼
Service Principals
Each of these represents a directory object managed within the organization’s Microsoft Entra environment.
Q83. What are the Common Types of Directory Objects ?
1. User Objects
A user object represents a person or supported user identity.
Example:
john@contoso.com
A user object can have properties such as:
- Display name
- UPN
- Object ID
- Account status
- Group memberships
- Assigned licenses
- Authentication-related configuration
2. Group Objects
A group object represents a collection of users or other supported objects.
Examples:
IT-Admins
Finance-Users
HR-Employees
Groups can be used for access management, application assignment, licensing, and other scenarios.
3. Device Objects
A device object represents a device identity in Microsoft Entra ID.
For example:
John's Laptop
│
▼
Microsoft Entra Device
│
├── Device Identity
├── Device Information
└── Device State
Device identity can be used as part of authentication and access-control scenarios.
4. Application Objects
Applications can be represented in Microsoft Entra ID so that they can participate in authentication and authorization.
For example, an organization might register a custom web application with Microsoft Entra ID.
The application registration represents the application’s identity configuration in the directory.
Application registrations and their relationship with service principals are covered in much greater detail later in this guide.
5. Service Principal Objects
A service principal represents an application’s or workload’s identity within a particular Microsoft Entra tenant.
It allows an application or service to authenticate and operate according to the permissions assigned to it.
For example:
Application
│
▼
Service Principal
│
▼
Microsoft Entra Tenant
│
▼
Assigned Permissions
This is an important concept for application authentication and automation.
Q84. Do all Directory Objects have an Object ID?
Most Microsoft Entra directory resources that are represented as directory objects have a unique identifier that can be used to identify them.
For common interview examples, remember:
User → Object ID
Group → Object ID
Device → Object ID
Service Principal → Object ID
The exact identifier properties available depend on the specific object type.
Q85. Why are Directory Objects Important?
Directory objects provide the identities and resources that Microsoft Entra ID manages.
For example, an administrator might:
- Create a user
- Add a user to a group
- Register an application
- Manage a device
- Assign permissions to an application identity
- Assign licenses through groups
- Apply access policies to users and groups
All of these operations involve objects represented within the Microsoft Entra environment.
Q86. Comparison between Directory Objects vs Azure Resources
This distinction can be useful in Azure interviews.
A directory object belongs to the identity/directory side of the Microsoft cloud environment.
An Azure resource is a resource deployed in Azure, such as:
- Virtual machine
- Storage account
- Virtual network
- Azure SQL database
For example:
Microsoft Entra ID
│
├── User
├── Group
├── Device
└── Service Principal
│
│ Authorization
▼
Azure Subscription
│
└── Azure Resources
├── VM
├── Storage
└── Network
This distinction becomes particularly important when discussing Azure RBAC.
A user or service principal can be represented in Microsoft Entra ID and then receive permissions to Azure resources through Azure RBAC.
Real-World Example
Suppose Contoso has:
5,000 users
300 groups
3,500 devices
100 enterprise applications
Hundreds of service principals
These are represented through identity-related objects in the organization’s Microsoft Entra environment.
An administrator can manage these objects and use them as part of the organization’s identity and access strategy.
For example:
A user belongs to a group → the group is assigned access to an application → Microsoft Entra ID helps authenticate the user → the application authorizes the user’s access.
This shows how different directory objects can work together.
⚠️ Common Interview Mistakes
Mistake 1:
“A directory object is only a user.”
❌ Incorrect.
Users are just one type of directory object.
Mistake 2:
“An Azure VM is a Microsoft Entra directory object.”
❌ Not in the same sense as a user, group, or service principal.
An Azure VM is primarily an Azure resource, although it can have an associated identity/device representation depending on its configuration.
Mistake 3:
“Every object has the same properties.”
❌ Incorrect.
Different object types have different properties and capabilities.
Mistake 4:
“Object ID and Tenant ID are the same.”
❌ Incorrect.
Tenant ID → identifies the tenant
Object ID → identifies a particular directory object
🎯 Interview Tip
If asked:
“What are directory objects in Microsoft Entra ID?”
A strong answer is:
“Directory objects are identities and resources represented and managed within a Microsoft Entra directory. Common examples include users, groups, devices, applications, and service principals. These objects have properties used by Microsoft Entra ID for identity and access management, and commonly have unique object identifiers.”
If the interviewer asks:
“Give me some examples.”
A quick answer is:
“Users, groups, devices, applications, and service principals.”
🔗 Related Interview Questions
Continue Knowing :
- Q87. What is the Difference Between a Microsoft Entra Tenant and an Azure Subscription?
- Q94. Tenant ID vs Subscription ID
- Q100. Can a Subscription be associated with another Tenant?
Quick Revision
Directory Objects = Identities/resources represented in the Microsoft Entra directory
Remember the common examples:
User + Group + Device + Application + Service Principal