Azure AD Connect Quiz:
Question: You are the administrator for contoso . com and the Global Administrator for contoso . onmicrosoft . com. You create users for all the domain users in contoso . onmicrosoft . com, and add the Department attribute (Sales, Marketing, Accounting). You want to create a group containing all users in Sales or Marketing. The group membership should always be up to date as new Sales and/or Marketing users are added to contoso . onmicrosoft . com. You wish to achieve this goal with as little administrative overhead as possible. What should you do? Select one option.
A. Create a new Group with the Membership Type “Dynamic User”. Construct the query: (object. department -eq "Sales") -and (object. department -eq "Marketing")
B. Create a new Group with the Membership Type “Dynamic User”. Construct the query: (user. department -eq "Sales") -or (user. department -eq "Marketing")
C. Create a new Group with the Membership Type “Dynamic User”. Construct the query: (user. department -eq "Sales") -and (user. department -eq "Marketing")
D. Create a new Group with the Membership Type “Dynamic User”. Construct the query: (object. department -eq "Sales") -or (object . department -eq "Marke
Answers
Answered by
8
Answer:
C is the answer because A B D is wrong
Answered by
2
option B is the correct answer
Explanation:
- option B: "Create a new Group with the Membership Type “Dynamic User”. Construct the query: (user. department -eq "Sales") -or (user. department -eq "Marketing") " is the correct answer.
- In user table, there is a department attribute.
- To access that attribute, query should be in user. department
- and in department we have to select either "Sales" or "Marketing" to apply this we have to use -or operator
hence, option B is the correct answer.
Similar questions