- A
Configure the attribute mapping to 'Ignore it if null' for the manager attribute
This ensures provisioning does not fail if manager is missing.
- B
Modify the SCIM schema in the application to make manager optional
Why wrong: Modifying the SCIM schema is not typically possible and not recommended.
- C
Use the expression language to set a default value for the manager attribute
Why wrong: This can fill in missing values, but the question asks to avoid provisioning failures, and ignoring null is a valid approach.
- D
Delete the manager attribute mapping from the provisioning configuration
Why wrong: This would remove the attribute entirely, which may not meet app requirements.
Quick Answer
The answer is to configure the attribute mapping to 'Ignore it if null' for the manager attribute. This setting is correct because when handling missing attributes in SCIM provisioning, the Microsoft Entra ID provisioning service will skip the mapping entirely for users whose manager value is null, rather than attempting to send an empty or invalid value that the SCIM 2.0 endpoint might reject. On the MS-102 exam, this scenario tests your understanding of how attribute mapping expressions and null handling prevent provisioning failures in real-world environments where directory data is incomplete. A common trap is choosing to set a default value or to delete the mapping, but those approaches either introduce incorrect data or break the schema requirement. Remember the memory tip: "Null is not a failure, it's a skip"—if an attribute is missing, ignore it rather than force it.
MS-102 Practice Question: Implement and manage Microsoft Entra identity and access
This MS-102 practice question tests your understanding of implement and manage microsoft entra identity and access. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
You are configuring Microsoft Entra ID provisioning for a SaaS application that supports SCIM 2.0. The app requires the 'manager' attribute to be mapped. However, the manager attribute is not populated for all users. What should you do to avoid provisioning failures?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Configure the attribute mapping to 'Ignore it if null' for the manager attribute
Option A is correct because when the 'manager' attribute is not populated for all users, configuring the attribute mapping to 'Ignore it if null' prevents provisioning failures by allowing the provisioning service to skip the attribute when its value is null, rather than attempting to send an empty or invalid value that the SCIM 2.0 endpoint might reject. This setting ensures that only users with a manager value trigger the mapping, avoiding errors for users without a manager.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Configure the attribute mapping to 'Ignore it if null' for the manager attribute
Why this is correct
This ensures provisioning does not fail if manager is missing.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Modify the SCIM schema in the application to make manager optional
Why it's wrong here
Modifying the SCIM schema is not typically possible and not recommended.
- ✗
Use the expression language to set a default value for the manager attribute
Why it's wrong here
This can fill in missing values, but the question asks to avoid provisioning failures, and ignoring null is a valid approach.
- ✗
Delete the manager attribute mapping from the provisioning configuration
Why it's wrong here
This would remove the attribute entirely, which may not meet app requirements.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse 'Ignore it if null' with setting a default value or removing the mapping, but the correct approach is to gracefully skip the null attribute rather than force a value or delete the mapping entirely.
Detailed technical explanation
How to think about this question
Under the hood, the SCIM 2.0 protocol (RFC 7644) defines how attributes are transmitted in JSON payloads; when an attribute is null, some SCIM endpoints may reject the request or return an error. The 'Ignore it if null' setting in Microsoft Entra ID's provisioning engine (which uses the Microsoft Identity Manager synchronization engine) instructs the service to omit the attribute from the outbound SCIM PATCH or POST request entirely, preventing schema validation failures. In real-world scenarios, this is critical for applications like ServiceNow or Salesforce that enforce strict attribute requirements and may fail provisioning if a null value is sent for a reference attribute like manager.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Implement and manage Microsoft Entra identity and access — study guide chapter
Learn the concepts, then practise the questions
- →
Implement and manage Microsoft Entra identity and access practice questions
Targeted practice on this topic area only
- →
All MS-102 questions
975 questions across all exam domains
- →
Microsoft 365 Administrator MS-102 study guide
Full concept coverage aligned to exam objectives
- →
MS-102 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related MS-102 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Deploy and manage a Microsoft 365 tenant practice questions
Practise MS-102 questions linked to Deploy and manage a Microsoft 365 tenant.
Implement and manage Microsoft Entra identity and access practice questions
Practise MS-102 questions linked to Implement and manage Microsoft Entra identity and access.
Manage security and threats by using Microsoft Defender XDR practice questions
Practise MS-102 questions linked to Manage security and threats by using Microsoft Defender XDR.
Manage compliance by using Microsoft Purview practice questions
Practise MS-102 questions linked to Manage compliance by using Microsoft Purview.
Manage users, groups, licensing, and support practice questions
Practise MS-102 questions linked to Manage users, groups, licensing, and support.
Implement and manage identity and access in Microsoft Entra ID practice questions
Practise MS-102 questions linked to Implement and manage identity and access in Microsoft Entra ID.
MS-102 fundamentals practice questions
Practise MS-102 questions linked to MS-102 fundamentals.
MS-102 scenario practice questions
Practise MS-102 questions linked to MS-102 scenario.
MS-102 troubleshooting practice questions
Practise MS-102 questions linked to MS-102 troubleshooting.
Practice this exam
Start a free MS-102 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this MS-102 question test?
Implement and manage Microsoft Entra identity and access — This question tests Implement and manage Microsoft Entra identity and access — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Configure the attribute mapping to 'Ignore it if null' for the manager attribute — Option A is correct because when the 'manager' attribute is not populated for all users, configuring the attribute mapping to 'Ignore it if null' prevents provisioning failures by allowing the provisioning service to skip the attribute when its value is null, rather than attempting to send an empty or invalid value that the SCIM 2.0 endpoint might reject. This setting ensures that only users with a manager value trigger the mapping, avoiding errors for users without a manager.
What should I do if I get this MS-102 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 24, 2026
This MS-102 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the MS-102 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.