Courseiva
Back to Microsoft Dynamics 365 Fundamentals CRM MB-910 questions

Scenario-based practice

Refer to the Exhibit Practice Questions

Practise Microsoft Dynamics 365 Fundamentals CRM MB-910 practice questions — original exam-style scenarios covering every exam domain, with detailed explanations, wrong-answer analysis, and common exam traps.

15
scenario questions
MB-910
exam code
Microsoft
vendor

Scenario guide

How to approach refer to the exhibit practice questions

Practise exhibit-style questions that ask you to read a topology, table, command output or diagram before choosing the best answer.

Quick answer

Exhibit-style questions test whether you can read a topology, command output, diagram or table before choosing the best answer.

How to extract the relevant detail from an exhibit.

How topology, command output or routing information affects the answer.

How to avoid answering from memory before reading the evidence.

How to map the exhibit back to the exam objective.

Related practice questions

Related MB-910 topic practice pages

Scenario questions usually connect to one or more exam topics. Use these links to review the underlying concepts behind the scenario.

Practice set

Practice scenarios

Question 1hardmultiple choice
Full question →

The exhibit shows a configuration for predictive scoring. A sales rep notices that opportunities with very high estimated values are always scored highest regardless of low probability. What is the most likely cause?

Exhibit

Refer to the exhibit.

```json
{
  "name": "Opportunity Scoring Model",
  "entity": "opportunity",
  "attributes": [
    {"name": "estimatedvalue", "weight": 0.4},
    {"name": "probability", "weight": 0.3},
    {"name": "createdon", "weight": 0.2},
    {"name": "ownerid", "weight": 0.1}
  ],
  "scoring": {
    "method": "weighted",
    "normalization": "min-max"
  }
}
```
Question 2hardmultiple choice
Full question →

Refer to the exhibit. A sales admin runs the PowerShell command and wants to retrieve the stages of the 'Opportunity Sales Process' Business Process Flow. However, the command returns no stages. What is the most likely reason?

Exhibit

Refer to the exhibit.

PowerShell snippet:
Get-CrmBusinessProcessFlow -Name "Opportunity Sales Process" | Select-Object -Property Name, Stages
Question 3easymultiple choice
Full question →

Refer to the exhibit. A Customer Insights administrator creates a segment for high-value customers. Which customers will be included in this segment?

Exhibit

Refer to the exhibit.

{
  "segment": {
    "name": "High-Value Customers",
    "criteria": {
      "measure": "Customer Lifetime Value",
      "operator": ">",
      "value": 1000
    }
  }
}
Question 4hardmultiple choice
Full question →

Refer to the exhibit. A Dynamics 365 Marketing segment is configured to include customers with purchase date on or after January 1, 2025. The segment refreshes daily. A customer purchased on December 31, 2024. Why is this customer not included?

Exhibit

{
  "marketingSegments": [
    {
      "name": "RecentBuyers",
      "criteria": {
        "field": "purchaseDate",
        "operator": "greaterOrEqual",
        "value": "2025-01-01"
      },
      "refresh": "Daily"
    }
  ]
}
Question 5mediummultiple choice
Full question →

Refer to the exhibit. After how many days from the start of the sequence will the first phone call activity occur?

Exhibit

Refer to the exhibit. The following is a snippet from a Dynamics 365 Sales sequence configuration:

{
  "sequence": {
    "id": "SEQ001",
    "name": "Follow-up Sequence",
    "steps": [
      {
        "type": "email",
        "template": "Initial Outreach",
        "delay": "0 days"
      },
      {
        "type": "phonecall",
        "delay": "2 days"
      },
      {
        "type": "email",
        "template": "Follow-up",
        "delay": "5 days"
      }
    ]
  }
}
Question 6hardmultiple choice
Full question →

An agent is working on a case titled 'User cannot reset password'. The agent opens the knowledge article shown in the exhibit. The agent expects the article to be automatically suggested by Copilot, but it is not. What is the most likely reason?

Exhibit

Refer to the exhibit.

```json
{
  "knowledgeArticle": {
    "title": "How to reset password",
    "content": "<p>Follow these steps...</p>",
    "keywords": ["password", "reset", "account"],
    "status": "Published",
    "language": "en-US"
  }
}
```
Question 7hardmultiple choice
Full question →

Based on the SLA configuration exhibit, what will happen if a case is not resolved within 20 hours?

Exhibit

Refer to the exhibit.

{
  "name": "Contoso Support SLA",
  "businessUnit": "Contoso",
  "slaItems": [
    {
      "name": "Initial Response",
      "slaKPI": {
        "name": "first response time",
        "target": 4,
        "warningTime": 2
      },
      "slaItemType": 1
    },
    {
      "name": "Resolution",
      "slaKPI": {
        "name": "case resolution time",
        "target": 24,
        "warningTime": 20
      },
      "slaItemType": 2
    }
  ]
}
Question 8mediummultiple choice
Full question →

Refer to the exhibit. A case has a 24-hour resolution SLA using the 'Extended Hours' business hours. The case is created on Friday at 4:00 PM. What is the deadline for resolution?

Exhibit

Refer to the exhibit.

Exhibit:
```json
{
  "businessHours": {
    "name": "Extended Hours",
    "timeZone": "Pacific Standard Time",
    "monday": [{"start": "08:00", "end": "20:00"}],
    "tuesday": [{"start": "08:00", "end": "20:00"}],
    "wednesday": [{"start": "08:00", "end": "20:00"}],
    "thursday": [{"start": "08:00", "end": "20:00"}],
    "friday": [{"start": "08:00", "end": "18:00"}],
    "saturday": [],
    "sunday": []
  }
}
```
Question 9easymultiple choice
Full question →

You are reviewing the exhibit of an enrichment configuration in Customer Insights - Data. What is the purpose of this enrichment?

Exhibit

Refer to the exhibit.

{
  "enrichments": [
    {
      "name": "DemographicEnrichment",
      "provider": "Microsoft",
      "attributes": [
        {"sourceAttribute": "CustomerId", "targetAttribute": "CustomerId"},
        {"sourceAttribute": "PostalCode", "targetAttribute": "PostalCode"}
      ]
    }
  ]
}
Question 10mediummultiple choice
Full question →

Refer to the exhibit. You are setting up a journey in Dynamics 365 Customer Insights - Journeys. The journey is triggered by a custom event 'ButtonClicked' and targets the 'Active Users' segment. After publishing, the journey does not start. What is the most likely cause?

Exhibit

Refer to the exhibit.

{
  "triggers": [
    {
      "id": "btn_click",
      "name": "ButtonClicked",
      "entityType": "Contact",
      "eventType": "CustomEvent",
      "fields": ["ContactId", "ButtonName", "Timestamp"]
    }
  ],
  "segments": [
    {
      "id": "active_users",
      "name": "Active Users",
      "entityType": "Contact",
      "query": "Contact.Status eq 'Active'"
    }
  ],
  "journeys": [
    {
      "id": "welcome",
      "name": "Welcome Journey",
      "trigger": "btn_click",
      "segment": "active_users",
      "actions": [
        {
          "type": "SendEmail",
          "emailTemplate": "WelcomeEmail"
        }
      ]
    }
  ]
}
Question 11easymultiple choice
Full question →

Refer to the exhibit. In Dynamics 365 Customer Insights - Data, the merge configuration uses 'LastUpdated' conflict resolution. What does this setting imply for the unified customer profile when there is conflicting data between the Customer and Purchase entities?

Exhibit

Refer to the exhibit.

{
  "dataSource": {
    "kind": "Power Query",
    "entities": [
      {
        "name": "Customer",
        "fields": ["CustomerId", "Name", "Email", "LoyaltyPoints"]
      },
      {
        "name": "Purchase",
        "fields": ["PurchaseId", "CustomerId", "Product", "Amount", "Date"]
      }
    ]
  },
  "unify": {
    "match": {
      "rules": [
        {
          "entity1": "Customer",
          "entity2": "Purchase",
          "conditions": [
            {
              "field1": "CustomerId",
              "field2": "CustomerId",
              "operator": "equals"
            }
          ]
        }
      ]
    },
    "merge": {
      "conflictResolution": "LastUpdated",
      "sourceOrder": []
    }
  }
}
Question 12hardmultiple choice
Full question →

Refer to the exhibit. A data analyst runs this KQL query in Customer Insights. What is the purpose of this query?

Exhibit

Refer to the exhibit. The following is a KQL query from a Customer Insights environment:
CustomerInsights
| where CustomerId == "12345"
| project CustomerId, PurchaseAmount, PurchaseDate
| summarize TotalSpend = sum(PurchaseAmount) by CustomerId
Question 13mediummultiple choice
Full question →

You are reviewing the exhibit of a segment definition in Customer Insights - Data. What is the purpose of this segment?

Exhibit

Refer to the exhibit.

{
  "segments": [
    {
      "name": "HighValueCustomers",
      "criteria": {
        "operator": "and",
        "conditions": [
          {"field": "TotalPurchaseAmount", "operator": "greaterThan", "value": 500},
          {"field": "TotalPurchaseAmount", "operator": "lessThan", "value": 2000}
        ]
      }
    }
  ]
}
Question 14mediummultiple choice
Full question →

A dispatcher notices that when a technician changes their booking status to 'Traveling', the booking status automatically transitions to 'In Progress' without requiring a manual update. Which system behavior is being configured through the booking status metadata shown in the exhibit?

Exhibit

Refer to the exhibit.

```json
{
  "BookingStatus": {
    "BookingStatusId": "00000000-0000-0000-0000-000000000001",
    "Name": "Traveling",
    "StatusColor": "#FF8C00",
    "StatusBehavior": "In Progress"
  }
}
```
Question 15hardmultiple choice
Full question →

A sales team is using the Dynamics 365 Sales API to create an opportunity. The JSON exhibit shows the payload they are sending. The request fails because the product line items are not being added. What is the most likely cause?

Exhibit

Refer to the exhibit.

{
  "name": "Cross-sell Opportunity",
  "customerid": {
    "name": "Contoso Ltd"
  },
  "totalamount": 50000,
  "pricelevelid": {
    "name": "Standard Price List"
  },
  "productlineitems": [
    {
      "productid": {
        "productnumber": "PR-001"
      },
      "quantity": 10,
      "salespricelist": {
        "name": "Standard Price List"
      }
    },
    {
      "productid": {
        "productnumber": "PR-002"
      },
      "quantity": 5,
      "salespricelist": {
        "name": "Standard Price List"
      }
    }
  ]
}

These MB-910 practice questions are part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style MB-910 questions with detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics.