0
0
Azurecloud~20 mins

Users and groups in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
πŸŽ–οΈ
Azure Users and Groups Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Azure AD Group Types

Which of the following best describes the difference between an Azure AD Security Group and an Office 365 Group?

ABoth Security Groups and Office 365 Groups serve the exact same purpose and can be used interchangeably.
BSecurity Groups provide collaboration features like shared mailboxes, while Office 365 Groups are only for access control.
CSecurity Groups are used for managing member access to resources, while Office 365 Groups provide collaboration features like shared mailboxes and calendars.
DSecurity Groups are only for external users, while Office 365 Groups are only for internal users.
Attempts:
2 left
πŸ’‘ Hint

Think about what collaboration tools Office 365 Groups offer compared to Security Groups.

❓ Configuration
intermediate
2:00remaining
Assigning a User to an Azure AD Group via Azure CLI

You want to add a user with object ID 1234-5678-9012 to a group with object ID abcd-efgh-ijkl using Azure CLI. Which command will do this correctly?

Aaz ad user add --user 1234-5678-9012 --group abcd-efgh-ijkl
Baz ad group member add --group abcd-efgh-ijkl --member-id 1234-5678-9012
Caz group member add --group abcd-efgh-ijkl --member 1234-5678-9012
Daz ad group add-member --group abcd-efgh-ijkl --member-id 1234-5678-9012
Attempts:
2 left
πŸ’‘ Hint

Check the Azure CLI command syntax for adding members to groups.

❓ Architecture
advanced
2:30remaining
Designing Group-Based Access for Multiple Applications

You manage multiple applications in Azure that require different access levels. You want to use Azure AD groups to simplify access management. Which design approach is best?

ACreate separate Azure AD groups for each application and assign users accordingly; assign these groups to application roles.
BCreate one large Azure AD group for all users and assign it to all applications with all roles.
CAssign users directly to each application without using groups to keep it simple.
DUse dynamic groups that include all users regardless of application needs.
Attempts:
2 left
πŸ’‘ Hint

Think about how to manage access efficiently and securely for multiple apps.

❓ security
advanced
2:30remaining
Preventing Privilege Escalation with Group Membership

Which Azure AD group membership practice helps prevent accidental privilege escalation?

AUse nested groups sparingly and audit group memberships regularly.
BAllow users to add themselves to any group to speed up access.
CAssign all users to the Global Administrator group for simplicity.
DDisable group membership auditing to reduce alert noise.
Attempts:
2 left
πŸ’‘ Hint

Consider how group nesting and auditing affect security.

❓ service_behavior
expert
3:00remaining
Effect of Group Membership Changes on Access Tokens

After adding a user to a new Azure AD group that grants access to a resource, when will the user’s access token reflect this new group membership?

AImmediately, without any user action, due to real-time token updates.
BOnly after the user signs out and signs back in to get a new token.
CAfter 24 hours automatically, regardless of sign-in activity.
DOnly after the administrator manually refreshes the token.
Attempts:
2 left
πŸ’‘ Hint

Think about how tokens are issued and refreshed in Azure AD.