Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

← Explore the core capabilities of customer engagement apps in Dynamics 365 practice sets

MB-910 Explore the core capabilities of customer engagement apps in Dynamics 365 • Complete Question Bank

MB-910 Explore the core capabilities of customer engagement apps in Dynamics 365 — All Questions With Answers

Complete MB-910 Explore the core capabilities of customer engagement apps in Dynamics 365 question bank — all 0 questions with answers and detailed explanations.

166
Questions
Free
No signup
Certifications/MB-910/Practice Test/Explore the core capabilities of customer engagement apps in Dynamics 365/All Questions
Question 1mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales representative needs to view the latest interaction history with a customer before a meeting. Which Dynamics 365 app provides a timeline of emails, calls, and appointments directly on the contact record?

Question 2easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service manager wants to identify recurring issues by analyzing case data. Which Dynamics 365 feature should they use to create visualizations and dashboards?

Question 3hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your organization uses Dynamics 365 Sales and wants to automatically score leads based on demographic and behavioral data. Which feature should you configure?

Question 4mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A field service technician needs to view assigned work orders and update their status on a mobile device while offline. Which Dynamics 365 app is designed for this scenario?

Question 5easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing team wants to track the effectiveness of an email campaign by measuring open rates and click-through rates. Which Dynamics 365 app provides these analytics?

Question 6hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your Dynamics 365 environment has multiple business units and you need to ensure that sales representatives can only view leads assigned to their own business unit. What should you configure?

Question 7mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service agent wants to use AI to get suggested responses to a customer's email. Which Dynamics 365 feature provides this capability?

Question 8easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales manager wants to forecast revenue by analyzing historical opportunities and current pipeline. Which Dynamics 365 feature should they use?

Question 9hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your organization uses Dynamics 365 Customer Service and wants to automatically categorize incoming cases based on keywords in the subject. Which feature should you configure?

Question 10mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO capabilities are provided by Dynamics 365 Sales?

Question 11hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE features are available in Dynamics 365 Customer Service?

Question 12mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO Dynamics 365 apps are part of the customer engagement apps family?

Question 13mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales manager wants to automatically prioritize leads based on their likelihood to convert. Which Dynamics 365 feature should be used?

Question 14easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service agent needs to find answers to common questions without leaving the case form. Which feature provides suggested knowledge articles in real time?

Question 15hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing team wants to create a customer journey that sends a follow-up email only to contacts who opened the initial email. Which Dynamics 365 Marketing feature should be used?

Question 16easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A field service technician needs to view their assigned work orders and update status while offline. Which Dynamics 365 Field Service capability supports this?

Question 17mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A compliance team at a financial firm must track all customer interactions across email, chat, and phone for regulatory audits. Which Dynamics 365 capability ensures this data is captured and searchable?

Question 18hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales operations admin reviews this configuration. Which change would most improve lead prioritization based on recent interaction?

Exhibit

Refer to the exhibit.
```json
{
  "salesInsightsSettings": {
    "leadScoring": {
      "model": "PredictiveML",
      "status": "Active",
      "features": [
        {"name": "CompanySize", "weight": 0.3},
        {"name": "Industry", "weight": 0.2},
        {"name": "EmailEngagement", "weight": 0.5}
      ]
    }
  }
}
```
Question 19mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

An agent reports that when no knowledge article is found, the system responds with irrelevant answers. Based on the exhibit, what is the likely cause?

Exhibit

Refer to the exhibit.
```json
{
  "customerServiceSettings": {
    "knowledgeSearch": {
      "sources": [
        {"type": "KnowledgeArticle", "enabled": true},
        {"type": "WebContent", "enabled": false},
        {"type": "ExternalFAQ", "enabled": false}
      ],
      "fallback": "Copilot"
    }
  }
}
```
Question 20hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A support manager uses this query in a Power BI report. What insight does this query provide?

Exhibit

Refer to the exhibit.
```sql
SELECT
  AccountName,
  COUNT(CaseId) AS TotalCases,
  AVG(CaseResolutionTime) AS AvgResolutionTime
FROM Cases
WHERE CreatedOn >= '2025-01-01'
GROUP BY AccountName
HAVING COUNT(CaseId) > 10
ORDER BY AvgResolutionTime DESC
```
Question 21easymultiple choice
Read the full NAT/PAT explanation →

A non-profit organization uses Dynamics 365 to manage donor relationships. They want to track interactions such as donations, event attendance, and volunteer hours. Which Dynamics 365 app is best suited?

Question 22mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO capabilities are part of Dynamics 365 Sales Insights?

Question 23hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE features are available in Dynamics 365 Customer Service?

Question 24easymulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO capabilities are included in Dynamics 365 Marketing?

Question 25mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A project manager wants to track tasks, milestones, and resource allocation for a customer implementation. Which Dynamics 365 app provides these capabilities?

Question 26easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A salesperson wants to quickly get a summary of their daily activities and upcoming meetings when they open Dynamics 365. What should they use?

Question 27hardmultiple choice
Read the full NAT/PAT explanation →

A dispatcher notices that some work orders are not being scheduled even though technicians are available. Based on the exhibit, what is the most likely cause?

Exhibit

Refer to the exhibit.
```json
{
  "fieldServiceSettings": {
    "scheduling": {
      "optimizationGoal": "MinimizeTravelTime",
      "timeWindow": "8:00-17:00",
      "considerSkills": true,
      "allowOvertime": false
    }
  }
}
```
Question 28easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales manager wants to ensure that leads are automatically qualified based on specific criteria such as budget and timeline. Which Dynamics 365 feature should be configured?

Question 29mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A support team manager notices that case resolution times have increased. The team uses Dynamics 365 Customer Service. Which feature should be implemented to provide agents with relevant knowledge articles while they work on cases?

Question 30hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing team wants to use Dynamics 365 Customer Insights to create a segment of customers who have purchased within the last 30 days and have an open support case. The segment should update daily. Which type of segment should they create?

Question 31easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A company wants to use Dynamics 365 Sales to track the entire sales process from lead to opportunity to closed deal. Which entity should be created first when a potential customer shows interest?

Question 32mediummultiple choice
Review the full routing breakdown →

A customer service manager wants to automatically route high-priority cases to a specialized team. Which Dynamics 365 feature should they configure?

Question 33hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Refer to the exhibit. A Dynamics 365 Customer Insights segment is configured as shown. The marketing team notices the segment does not include a customer who recently spent $12,000. What is the most likely reason?

Exhibit

{
  "customerInsights": {
    "dataSource": "Sales",
    "entityType": "Contact",
    "segmentName": "HighValueCustomers",
    "criteria": {
      "field": "TotalSpend",
      "operator": "greaterThan",
      "value": 10000
    },
    "refreshSchedule": {
      "frequency": "Weekly",
      "day": "Monday"
    }
  }
}
Question 34mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A project manager uses Dynamics 365 Project Operations. They need to create a work breakdown structure (WBS) and assign resources to tasks. Which entity should they use to define the WBS?

Question 35easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A salesperson wants to use Dynamics 365 Sales Copilot to draft an email to a customer based on recent interactions. What is the primary benefit of using Copilot for this task?

Question 36hardmultiple choice
Review the full routing breakdown →

Refer to the exhibit. A Dynamics 365 Customer Service routing rule is configured as shown. A case with priority code 2 is created. What will happen?

Exhibit

{
  "routingRules": [
    {
      "name": "PriorityRouting",
      "conditions": {
        "field": "prioritycode",
        "operator": "eq",
        "value": 1
      },
      "queue": "VIPQueue",
      "failureAction": "AssignToDefaultQueue"
    }
  ]
}
Question 37mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO actions can a marketing user perform using Dynamics 365 Customer Insights? (Choose TWO.)

Question 38mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE capabilities are provided by Dynamics 365 Sales? (Choose THREE.)

Question 39hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO features in Dynamics 365 Customer Service help improve agent productivity? (Choose TWO.)

Question 40mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Refer to the exhibit. A Dynamics 365 Customer Service SLA is configured as shown. A case with the Gold Support SLA is created but the first response is not provided within 1 hour. What will happen?

Exhibit

{
  "sla": {
    "name": "GoldSupport",
    "slaItems": [
      {
        "name": "FirstResponse",
        "slaTerm": {
          "duration": 1,
          "durationUnit": "Hours"
        },
        "failureAction": "Escalate",
        "successAction": "Notify"
      }
    ]
  }
}
Question 41easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 Customer Service agent needs to communicate with a customer via live chat. Which feature should the agent use?

Question 42hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

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 43mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your organization uses Dynamics 365 Sales. Sales reps need to automatically log emails and meetings from Outlook into CRM records. Which feature should you enable?

Question 44hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 Customer Service administrator needs to ensure that when a customer submits a support request via the portal, a case is automatically created and assigned based on the customer's service tier. Which automation feature should be used?

Question 45easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

You are configuring the Dynamics 365 Sales app for a team. Based on the exhibit, which setting will prevent email messages from being automatically tracked for customer engagement?

Exhibit

Refer to the exhibit.

{
  "businessUnit": "Contoso",
  "isAutoCreate": true,
  "isAutoCapture": true,
  "isAutoTrack": false,
  "isAutoPromote": true
}
Question 46mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A company uses Dynamics 365 Marketing. They want to send personalized emails based on a contact's previous purchase history. Which feature should they use to segment contacts?

Question 47hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your Dynamics 365 Sales team uses Copilot to help draft emails. However, some users report that the suggested content is irrelevant. What should you check first?

Question 48easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

You are analyzing Dynamics 365 Customer Service performance. Based on the KQL query, what is being calculated?

Exhibit

Refer to the exhibit.

KQL query:
Dynamics365Activity
| where ActivityType == "Case"
| where Status == "Resolved"
| summarize AvgResolutionTime = avg(ResolutionTime) by OwnerName
Question 49mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 Field Service organization wants to automatically schedule work orders to the nearest available technician. Which feature should be configured?

Question 50hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your Dynamics 365 Sales administrator wants to use Copilot to generate a summary of a lead's interaction history. Which prerequisite must be met?

Question 51easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 Customer Service manager wants to measure how quickly cases are being resolved. Which report should they use?

Question 52mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO features in Dynamics 365 Sales help sales reps prioritize their leads?

Question 53hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE capabilities are provided by Dynamics 365 Customer Insights?

Question 54easymulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO of the following are core entities in Dynamics 365 Sales?

Question 55hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

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 56mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 Marketing user wants to create a customer journey that sends a follow-up email to attendees one week after an event. Which entity should the journey be based on?

Question 57hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Based on the exhibit, what will happen when a new service request is created in Dynamics 365 Field Service?

Exhibit

Refer to the exhibit.

{
  "name": "Contoso Field Service Settings",
  "isAutoGenerateWO": true,
  "defaultWOType": "Repair",
  "isAutoAllocate": false,
  "schedulingEnabled": true
}
Question 58mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales manager wants to automatically prioritize leads based on criteria such as budget, timeline, and purchase intent. Which Dynamics 365 Sales feature should they use?

Question 59hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service manager needs to create a unified view of all customer interactions across email, chat, and phone. Which Dynamics 365 Customer Service capability should they use?

Question 60easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing team wants to create a targeted email campaign based on customer segments. Which Dynamics 365 Marketing feature should they use?

Question 61mediummultiple choice
Read the full NAT/PAT explanation →

A field service organization needs to automatically dispatch the nearest available technician to a service request. Which Dynamics 365 Field Service feature should they use?

Question 62hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A project manager wants to track project tasks, resources, and budgets in Dynamics 365. Which app should they use?

Question 63easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A salesperson wants to use AI to get real-time suggestions for the next best action during a customer call. Which Dynamics 365 Sales feature should they use?

Question 64mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service team wants to provide self-service options so customers can find answers from a knowledge base. Which Dynamics 365 Customer Service feature should they use?

Question 65hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A manufacturing company uses Dynamics 365 Field Service to manage equipment maintenance. They want to predict equipment failures using IoT data. Which feature should they use?

Question 66easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing manager wants to create automated email journeys triggered by customer actions. Which Dynamics 365 Marketing feature should they use?

Question 67mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO features are part of Dynamics 365 Sales Insights? (Choose two.)

Question 68hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE capabilities are provided by Dynamics 365 Customer Service? (Choose three.)

Question 69easymulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO apps are part of Dynamics 365 Customer Engagement? (Choose two.)

Question 70mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales manager wants to automatically prioritize leads based on their likelihood to convert. Which Dynamics 365 feature should they use?

Question 71hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your organization is migrating from an on-premises CRM to Dynamics 365 Sales. You need to ensure that sales representatives can access their work offline on mobile devices. Which capability should you configure?

Question 72easymultiple choice
Review the full routing breakdown →

A customer service manager wants to automatically categorize incoming support emails and route them to the appropriate team. Which Dynamics 365 feature should they implement?

Question 73hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your Dynamics 365 Sales environment includes a custom entity 'Competitor Record' that must be linked to opportunity records. Which type of relationship should you create between Opportunity and Competitor Record?

Question 74mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Refer to the exhibit. A Dynamics 365 administrator is configuring a new business unit for Contoso Ltd. The administrator wants to set a credit limit of $500,000 USD. Based on the JSON configuration, which field must be set to ensure the credit limit applies to all child business units?

Exhibit

{
  "BusinessUnit": {
    "Name": "Contoso Ltd.",
    "Currency": "USD",
    "BaseCurrency": "USD",
    "CreditLimit": 500000,
    "ParentBusinessUnit": null
  },
  "SalesTerritory": {
    "Name": "North America",
    "Manager": "John Doe"
  }
}
Question 75mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your organization uses Dynamics 365 Customer Service. A customer contacts support via chat and the agent needs to see the customer's previous purchases and open cases. Which feature allows the agent to access this information without switching screens?

Question 76hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 Marketing user wants to send a personalized email to customers who have purchased a specific product and have not opened any email in the last 30 days. Which segment type should they create?

Question 77easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A field service technician needs to update a work order after completing a repair on-site. Which Dynamics 365 Field Service capability allows the technician to do this from a mobile device?

Question 78hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Refer to the exhibit. A Dynamics 365 administrator is configuring Sales Insights. The configuration includes 'suggestedContacts' and 'autoCapture'. What is the primary benefit of enabling 'autoCapture'?

Exhibit

{
  "dataSources": [
    {
      "name": "SalesData",
      "type": "Dynamics365",
      "entities": ["opportunity", "account", "contact"]
    },
    {
      "name": "MarketingData",
      "type": "Dynamics365",
      "entities": ["lead", "campaign"]
    }
  ],
  "insights": {
    "suggestedContacts": true,
    "autoCapture": true
  }
}
Question 79mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO capabilities are included in Dynamics 365 Customer Insights? (Select two.)

Question 80hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE features are available in Dynamics 365 Sales to help sales representatives increase productivity? (Select three.)

Question 81easymulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO types of activities can be tracked in Dynamics 365 Customer Service? (Select two.)

Question 82mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Refer to the exhibit. A case is created on January 15, 2025 at 14:30 UTC with a Gold Support SLA that has a response time of 2 hours during business hours (9:00-17:00). When is the response due?

Exhibit

{
  "sla": {
    "name": "Gold Support SLA",
    "businessHours": "9:00-17:00",
    "responseTime": 2,
    "resolutionTime": 24,
    "calendar": "Default",
    "applyDuring": "BusinessHours"
  },
  "case": {
    "title": "Printer not working",
    "createdOn": "2025-01-15T14:30:00Z",
    "status": "Active"
  }
}
Question 83easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing manager wants to create a customer journey that sends a welcome email, then waits 3 days, and then sends a follow-up email. Which Dynamics 365 Marketing feature should they use?

Question 84hardmultiple choice
Review the full routing breakdown →

Your Dynamics 365 Customer Service environment uses a routing rule set that directs cases based on product category. However, some high-priority customers are not being assigned to the premium support team. What should you configure to ensure high-priority customers are routed to premium support?

Question 85mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales team wants to automate follow-up emails after a lead is qualified. Which Dynamics 365 app should they use to create the automation?

Question 86hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service manager wants to use AI to suggest knowledge articles to agents during case resolution. Which feature should they enable?

Question 87easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing team wants to send personalized emails to a segment of customers who have purchased in the last 30 days. Which Dynamics 365 app should they use?

Question 88mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A company wants to use AI to analyze customer sentiment from support conversations. Which feature should they enable?

Question 89hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A field service organization wants to automatically schedule work orders based on technician skills and location. Which capability should they use?

Question 90easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A salesperson wants to view the latest customer interactions from email, social media, and phone calls in one place. Which feature should they use?

Question 91mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service team wants to use a unified inbox to manage conversations from chat, email, and social media. Which app should they use?

Question 92hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing team wants to create a customer journey that sends different emails based on whether a lead opened a previous email. Which feature should they use?

Question 93easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A company wants to track the status of customer issues from creation to resolution. Which entity in Dynamics 365 Customer Service should they use?

Question 94mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE capabilities are part of Dynamics 365 Sales?

Question 95easymulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO apps are part of Dynamics 365 Customer Service?

Question 96hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE features are available in Dynamics 365 Field Service?

Question 97mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales manager wants to automatically prioritize leads based on their likelihood to convert. Which capability in Dynamics 365 Sales should they use?

Question 98easymultiple choice
Review the full routing breakdown →

A customer service manager wants to automatically route cases to the appropriate agent based on skill and availability. Which Dynamics 365 Customer Service feature should they configure?

Question 99hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing team wants to send personalized email campaigns based on customer interactions. Which Dynamics 365 Marketing feature should they use?

Question 100mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A project manager wants to track time, expenses, and project progress in Dynamics 365. Which app should they use?

Question 101mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A company wants to use AI to analyze customer sentiment from support conversations. Which Dynamics 365 feature provides this capability?

Question 102easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A salesperson needs to view the latest customer engagement data while working in Outlook. Which Dynamics 365 app integrates with Outlook to show this information?

Question 103hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A field service manager wants to optimize technician schedules to minimize travel time. Which Dynamics 365 Field Service feature should they use?

Question 104mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing manager wants to create a customer segment based on purchase history and website behavior. Which Dynamics 365 tool should they use?

Question 105easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A support agent wants to quickly find relevant knowledge articles while working on a case. Which Dynamics 365 Customer Service feature provides article suggestions automatically?

Question 106mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO capabilities are part of Dynamics 365 Sales? (Choose TWO.)

Question 107hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE features are available in Dynamics 365 Customer Service? (Choose THREE.)

Question 108easymulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO capabilities are part of Dynamics 365 Marketing? (Choose TWO.)

Question 109hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Refer to the exhibit. A marketing user creates an email marketing configuration targeting accounts with revenue >= $1M and active status (statecode 0). The email fails to send, and the error indicates that the segment returned zero members. Which is the most likely reason?

Exhibit

{
  "emailMarketing": {
    "fromName": "Contoso Marketing",
    "fromEmail": "noreply@contoso.com",
    "replyToEmail": "support@contoso.com",
    "emailTemplate": "Newsletter Template",
    "segment": {
      "logicalName": "account",
      "criteria": [
        {
          "attribute": "revenue",
          "operator": "gte",
          "value": 1000000
        },
        {
          "attribute": "statecode",
          "operator": "eq",
          "value": 0
        }
      ]
    }
  }
}
Question 110hardmultiple choice
Review the full routing breakdown →

Refer to the exhibit. An administrator configures a routing rule set for cases. A case with priority 'Low' is created. Which queue will it be assigned to?

Exhibit

{
  "routingRuleSet": {
    "name": "High Priority Cases",
    "routingRules": [
      {
        "condition": "priority eq 'High'",
        "queue": "Premium Support Queue",
        "agentSelection": "skillMatch"
      },
      {
        "condition": "priority eq 'Medium'",
        "queue": "Standard Queue",
        "agentSelection": "roundRobin"
      }
    ],
    "fallbackQueue": "General Queue"
  }
}
Question 111mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Refer to the exhibit. An agent opens a high-priority case in Dynamics 365 Customer Service with Copilot enabled. Which Copilot capability would automatically provide a suggested response based on the case title and product?

Exhibit

{
  "copilotSettings": {
    "conversationSummary": true,
    "sentimentAnalysis": true,
    "articleSuggestion": true,
    "draftReply": true
  },
  "case": {
    "title": "Printer not working",
    "product": "Contoso LaserJet 2000",
    "customer": "Northwind Traders",
    "priority": "High"
  }
}
Question 112mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales manager wants to automatically send a follow-up email to a lead after a meeting is completed in Dynamics 365 Sales. Which feature should they use?

Question 113hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A company uses Dynamics 365 Customer Service. Agents need to see the full conversation history from multiple channels (email, chat, phone) in one view. What should they use?

Question 114easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing team wants to create a targeted email campaign based on customer segments in Dynamics 365 Marketing. Which entity should they use to define the segment?

Question 115mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A salesperson needs to quickly generate a proposal from an opportunity in Dynamics 365 Sales. What is the recommended way?

Question 116hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service manager wants to automatically categorize incoming cases based on the customer's product type in Dynamics 365 Customer Service. What should they configure?

Question 117easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

In Dynamics 365 Sales, what is the purpose of the 'Business Process Flow'?

Question 118mediummultiple choice
Read the full NAT/PAT explanation →

A company uses Dynamics 365 Field Service. Dispatchers need to optimize technician schedules based on location and skills. Which feature should they use?

Question 119hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing manager wants to track the ROI of a multi-channel campaign in Dynamics 365 Marketing. Which feature is essential?

Question 120easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

In Dynamics 365 Customer Service, what is the primary purpose of an 'Entitlement'?

Question 121mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO of the following are features of Dynamics 365 Sales?

Question 122hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE of the following are capabilities of Dynamics 365 Customer Service?

Question 123easymulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO of the following are core entities in Dynamics 365 Marketing?

Question 124hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 administrator configures the above field definition. What is the most likely effect?

Exhibit

Refer to the exhibit.

{
  "entity": "account",
  "attribute": "telephone1",
  "format": "phone",
  "maxLength": 50,
  "minLength": 10
}
Question 125mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 administrator runs this KQL query in Customer Service analytics. What insight does the query provide?

Exhibit

Refer to the exhibit.

KQL query:
Case
| where CreatedOn > datetime(2024-01-01)
| summarize Count = count() by Product
Question 126hardmultiple choice
Read the full NAT/PAT explanation →

Contoso Ltd. is a mid-sized manufacturing company that uses Dynamics 365 Customer Service and Dynamics 365 Field Service. They have 50 agents and 30 field technicians. Currently, all incoming cases are manually assigned by a dispatcher. Contoso wants to automate case routing based on the product category (e.g., HVAC, Electrical, Plumbing). Additionally, if a case requires an on-site visit after initial diagnosis, a field service work order should be automatically created and assigned to the nearest available technician with the correct skill set. The company also wants to provide customers with a self-service portal to submit cases and track their status. The IT team has limited development resources and prefers out-of-the-box solutions. Which combination of Dynamics 365 features should they use?

Question 127mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales manager wants to automatically score leads based on their fit and engagement. Which Dynamics 365 capability should they use?

Question 128hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service team receives high call volumes. They need a solution that suggests relevant knowledge articles to agents in real-time during a call. Which Dynamics 365 feature should be enabled?

Question 129easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing team wants to send personalized email campaigns to leads based on their behavior on the company website. Which Dynamics 365 app should they use?

Question 130hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

After migrating to Dynamics 365, a sales team notices that duplicate leads are being created. They want to automatically detect and resolve duplicates upon creation. What should they configure?

Question 131mediummultiple choice
Read the full NAT/PAT explanation →

A field service organization needs to automatically dispatch the nearest technician to a new work order. Which Dynamics 365 capability should they use?

Question 132easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A company wants to use AI to generate draft email replies for salespeople based on the context of an email thread. Which feature should they enable?

Question 133mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service manager wants to measure customer satisfaction after each interaction. Out-of-the-box, which Dynamics 365 Customer Service feature can send surveys automatically after a case is resolved?

Question 134hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales organization uses Dynamics 365 Sales and wants to automatically capture emails and meetings from Outlook into relevant records without manual entry. What should they set up?

Question 135easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A marketing manager wants to create a customer journey that sends a welcome email, then waits 3 days, then sends a discount offer. Which Dynamics 365 tool should they use?

Question 136mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO capabilities are part of Dynamics 365 Customer Insights?

Question 137hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE features are available in Dynamics 365 Sales Insights?

Question 138mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO capabilities are included in Dynamics 365 Customer Service?

Question 139hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Refer to the exhibit. A customer service administrator configures the SLA JSON shown. What is the likely outcome when a case is created?

Exhibit

{
  "sla": {
    "name": "Gold SLA",
    "slaItem": [
      {
        "name": "Initial Response",
        "successConditions": {
          "field": "statuscode",
          "value": "In Progress"
        },
        "failureAfter": 60,
        "actionUrl": null
      }
    ]
  }
}
Question 140hardmultiple choice
Read the full NAT/PAT explanation →

Contoso, a multinational retailer, uses Dynamics 365 Sales and Customer Service. They have 10,000 sales representatives and 5,000 customer service agents. The sales team uses Copilot for Sales to draft emails and summarize meetings. The service team uses Omnichannel for Customer Service with voice channel. Contoso recently acquired a company that uses a different CRM system. They want to migrate all customer data into Dynamics 365, ensuring that duplicate records are minimized. They also want to use AI to predict customer churn and send proactive offers. Additionally, they need to comply with GDPR and allow customers to request deletion of their data. Which combination of Dynamics 365 tools should Contoso use?

Question 141mediummultiple choice
Read the full NAT/PAT explanation →

Northwind Traders uses Dynamics 365 Field Service to manage their field technicians. They have 200 technicians and receive about 500 work orders per day. Currently, dispatchers manually assign technicians to work orders based on location and skills. This process is slow and often results in suboptimal assignments. Northwind wants to automate the scheduling process to minimize travel time and maximize first-time fix rate. They also want to provide technicians with a mobile app to view their schedule, capture signatures, and update work order status. Additionally, they want to enable customers to schedule appointments online. Which Dynamics 365 components should Northwind implement?

Question 142hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A sales manager reports that the Opportunity record for a high-value deal shows a negative estimated revenue of -$15,000. The system currency is USD. The opportunity was created by importing data via a legacy integration. What is the most likely cause of this issue?

Question 143mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your company uses Dynamics 365 Sales. You want to ensure that when a lead is qualified, the associated contact and account are automatically created, and the lead's email address and phone number are copied to the new contact. How should you configure this?

Question 144easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A customer service agent needs to view all open cases for a specific account, including cases assigned to other agents. Which view should the agent use?

Question 145mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your Dynamics 365 Customer Service implementation includes a Power Automate flow that creates a task in Microsoft To Do when a case is resolved. The flow triggers on resolution, but tasks are not being created. You verify the flow is turned on and has no errors. What should you check next?

Question 146hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 Marketing user reports that a customer segment based on 'Contact City equals Seattle' returns 0 members, even though there are contacts with City='Seattle'. What is the most likely cause?

Question 147easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

In Dynamics 365 Customer Service, what is the primary purpose of creating a Service Level Agreement (SLA) for case management?

Question 148mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO capabilities are provided by Dynamics 365 Customer Insights - Journeys? (Choose two.)

Question 149hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which THREE actions can be performed using Dynamics 365 Sales Hub? (Choose three.)

Question 150easymulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Which TWO record types can be associated with a Case in Dynamics 365 Customer Service to provide additional context? (Choose two.)

Question 151hardmultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 Sales administrator has configured Sales Insights settings as shown. Which feature is NOT enabled?

Exhibit

Refer to the exhibit.
{
  "name": "SalesInsightsConfiguration",
  "settings": {
    "enableRelationshipAnalytics": true,
    "enablePredictiveLeadScoring": true,
    "enableConversationIntelligence": false,
    "enableSentimentAnalysis": true
  }
}
Question 152mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

You are a Dynamics 365 administrator for a mid-sized manufacturing company. The sales team uses Dynamics 365 Sales to manage leads and opportunities. Recently, the VP of Sales requested a dashboard that shows the total estimated revenue of all open opportunities grouped by sales stage. The dashboard should update automatically as data changes. You have created a personal dashboard using the built-in chart designer. However, the VP wants the dashboard to be visible to all sales users without manual sharing. What should you do?

Question 153hardmultiple choice
Review the full routing breakdown →

Your organization uses Dynamics 365 Customer Service to manage support cases. You have configured a routing rule set that automatically assigns cases to agents based on their skills and availability. However, you notice that some high-priority cases are not being assigned immediately; they remain unassigned for up to 10 minutes. The routing rule set uses the default 'Round Robin' assignment method. You need to ensure that high-priority cases are assigned within 1 minute of creation. What should you do?

Question 154easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your company uses Dynamics 365 Marketing to send email campaigns. The marketing team created a customer journey that sends a welcome email to new contacts. The journey is live, but some contacts are not receiving the email. You check the journey and see that the contacts are in the target segment. The email has been approved. The journey's 'Send email' action shows no errors. However, the contacts have a 'Marketing Consent' field set to 'Do not allow'. What should you do to ensure these contacts receive the email?

Question 155mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

You are the Dynamics 365 administrator for a retail company. The sales team uses Dynamics 365 Sales to manage leads and opportunities. The marketing team uses Dynamics 365 Marketing to create segments and send emails. The VP of Sales wants to see a unified view of each customer's interactions across sales and marketing, including email opens, clicks, and meeting activities. You need to recommend a solution that provides this 360-degree view without custom development. What should you do?

Question 156hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A Dynamics 365 Customer Service organization has implemented Copilot for Service to help agents respond to cases. The AI suggests responses based on knowledge articles and previous cases. However, agents report that the suggestions are often irrelevant and not helpful. You need to improve the relevance of Copilot suggestions. Which two actions should you take? (Choose two.)

Question 157mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Your organization is implementing Dynamics 365 Sales. Which TWO capabilities are core to the sales engagement app? (Choose TWO.)

Question 158hardmulti select
Review the full routing breakdown →

A Dynamics 365 Customer Service administrator needs to configure an intelligent routing system that automatically assigns cases based on skill and presence. Which THREE capabilities should be included? (Choose THREE.)

Question 159easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Contoso, a mid-sized manufacturing company, recently deployed Dynamics 365 Sales and Customer Service. The sales team uses the sales hub to manage leads, opportunities, and quotes. The customer service team uses the customer service hub to manage cases and knowledge articles. The IT manager wants to enable Copilot for both teams to improve productivity. The sales team needs Copilot to summarize opportunity details and suggest email replies. The service team needs Copilot to suggest knowledge articles for case resolution and draft case summaries. The IT manager is concerned about data security and wants to ensure that Copilot only accesses data that users have permission to see. Which action should the IT manager take to meet these requirements?

Question 160mediummultiple choice
Review the full routing breakdown →

A global consulting firm uses Dynamics 365 Customer Service to manage cases from multiple channels including email, web portal, and phone. The firm recently expanded to a new region and wants to set up a new customer service team that operates in a different time zone. The new team should only have access to cases assigned to them and must not see cases from other teams. The administrator needs to configure the system to automatically route incoming cases from the new region to the appropriate team based on the customer's country. Additionally, the team lead for the new region needs to be able to view and reassign cases within the team but not modify case resolution details. What should the administrator do?

Question 161hardmultiple choice
Read the full NAT/PAT explanation →

Northwind Traders uses Dynamics 365 Field Service to manage work orders and scheduling for their technicians. They have integrated with Dynamics 365 Supply Chain Management to sync inventory levels. Recently, they implemented IoT alerts from equipment sensors that automatically generate work orders when a threshold is exceeded. The operations manager wants to optimize the scheduling of these IoT-generated work orders by automatically assigning them to the nearest available technician with the right skills. Additionally, the manager wants to use predictive maintenance to proactively schedule maintenance before equipment fails, based on sensor data. Which combination of features should the administrator enable to meet these requirements?

Question 162easymultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

A retail company uses Dynamics 365 Marketing to send personalized email campaigns to customers. The marketing team wants to create a customer journey that automatically sends a welcome email when a new contact is created in Dynamics 365, then follows up with a discount offer after 3 days if the contact has not made a purchase. The team also wants to track email opens and clicks to identify engaged contacts. The IT administrator needs to configure the system to support this journey. Which feature should the administrator use?

Question 163mediummulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Adventure Works, a B2B company, uses Dynamics 365 Sales to manage their sales pipeline. The sales team uses the forecasting feature to predict quarterly revenue. The sales manager noticed that the forecast amounts are often inaccurate because some sales representatives are not updating opportunity close dates and stages regularly. The manager wants to improve forecast accuracy by ensuring that opportunities are updated when they change. The manager also wants to use AI to predict which opportunities are likely to close and to get recommendations for next actions. Which two features should the administrator enable? (Choose TWO.)

Question 164hardmultiple choice
Read the full NAT/PAT explanation →

Contoso Pharmaceuticals uses Dynamics 365 Customer Service to handle sensitive patient data. They have strict compliance requirements: only authorized users can view case details, and all access must be audited. The compliance officer wants to ensure that when a case is resolved, the case remains accessible for read-only for 7 years, after which it should be automatically deleted. Additionally, the IT administrator needs to set up a policy that automatically purges cases older than 7 years. The company also uses Microsoft Purview for data governance. Which approach should the administrator take?

Question 165mediummultiple choice
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Wide World Importers uses Dynamics 365 Sales and Customer Service. The sales team uses Copilot for Sales to draft email replies and get opportunity summaries. The customer service team uses Copilot to suggest knowledge articles. Recently, a user reported that Copilot is not generating any suggestions for a specific case. The case has a subject and description filled in, and knowledge articles exist on similar topics. The administrator checked the Copilot configuration and found that it is enabled for Customer Service. What is the most likely reason Copilot is not providing suggestions?

Question 166hardmulti select
Read the full Explore the core capabilities of customer engagement apps in Dynamics 365 explanation →

Litware, a technology consulting firm, uses Dynamics 365 Customer Service with Omnichannel to handle customer inquiries from chat, email, and social media. They have a high volume of requests and want to use AI to automatically categorize incoming conversations and suggest responses. The admin wants to configure Copilot to provide real-time suggestions during active conversations. Additionally, the admin wants to ensure that sensitive information (such as credit card numbers) is not stored in the conversation transcripts. Which two actions should the admin take? (Choose TWO.)

Practice tests

Scored 10-question sessions with instant feedback and explanations.

MB-910 Practice Test 1 — 10 Questions→MB-910 Practice Test 2 — 10 Questions→MB-910 Practice Test 3 — 10 Questions→MB-910 Practice Test 4 — 10 Questions→MB-910 Practice Test 5 — 10 Questions→MB-910 Practice Exam 1 — 20 Questions→MB-910 Practice Exam 2 — 20 Questions→MB-910 Practice Exam 3 — 20 Questions→MB-910 Practice Exam 4 — 20 Questions→Free MB-910 Practice Test 1 — 30 Questions→Free MB-910 Practice Test 2 — 30 Questions→Free MB-910 Practice Test 3 — 30 Questions→MB-910 Practice Questions 1 — 50 Questions→MB-910 Practice Questions 2 — 50 Questions→MB-910 Exam Simulation 1 — 100 Questions→

Practice by domain

Each domain maps to a weighted exam section. Focus on the domain where you are weakest.

Describe Dynamics 365 Customer InsightsDescribe Dynamics 365 SalesDescribe Dynamics 365 Customer ServiceDescribe Dynamics 365 Field ServiceExplore the core capabilities of customer engagement apps in Dynamics 365Describe shared features and Copilot capabilities

Practice by scenario

Filter questions by type — troubleshooting, exhibit, drag-and-drop, PBQ, ACLs, OSPF, and more.

Browse scenarios→

Continue studying

All Explore the core capabilities of customer engagement apps in Dynamics 365 setsAll Explore the core capabilities of customer engagement apps in Dynamics 365 questionsMB-910 Practice Hub