ExamTopics1, 2.Questions 1-12 Flashcards
All of topic 1, started topic 2
You are building a custom application in Azure to process resumes for the HR department.
The app must monitor submissions of resumes.
You need to parse the resumes and save contact and skills information into the Common Data Service.
Which mechanism should you use?
Power Automate
You are researching integrations with several external systems.
Each integration has different requirements.
You need to determine which data sources to use to meet each requirement.
Which supports records that use an integer as a primary key?
Which ensures that data can be read and updated?
Which ensures that data is available to all Common Data Service clients?
- Custom Connector
- Custom Connector
- Virtual Entity
Technicians who service the equipment use the Dynamics 365 Field Service mobile app on tablet devices to view scheduled assignments. Technicians use a canvas app to display the maintenance history for each piece of equipment and update the history.
Managers use a Power BI dashboard that displays Dynamics 365 Field Service and real-time maintenance data.
Due to increasing demand, managers must be able to work in the field as technicians.
You need to design a solution that allows the managers to work from one single screen.
What should you do?
Add the Maintenance history app to the Power BI dashboard.
To meet these requirements, What feature creates the job listings portal?
- Human resources team members from the staffing company must be able to access the jobs listing and post available positions.
- Employers seeking temporary employees must also be able to access the jobs listing and post available positions.
- Approved job candidates must be notified about new positions for which they are qualified.
- Approved job candidate must have an option to accept a job assignment directly from a notification.
Custom Self-service portal for both employers and employees.
To meet these requirements, What feature creates an app that lists available positions?
- Human resources team members from the staffing company must be able to access the jobs listing and post available positions.
- Employers seeking temporary employees must also be able to access the jobs listing and post available positions.
- Approved job candidates must be notified about new positions for which they are qualified.
- Approved job candidate must have an option to accept a job assignment directly from a notification.
Model-Driven App with push notifications.
To meet these requirements, what feature creates the app for employers who are seeking temporary employees?
- Human resources team members from the staffing company must be able to access the jobs listing and post available positions.
- Employers seeking temporary employees must also be able to access the jobs listing and post available positions.
- Approved job candidates must be notified about new positions for which they are qualified.
- Approved job candidate must have an option to accept a job assignment directly from a notification.
Web page defined on the job custom entity
To meet these requirements, what feature creates invitation parameters for job candidates?
- Human resources team members from the staffing company must be able to access the jobs listing and post available positions.
- Employers seeking temporary employees must also be able to access the jobs listing and post available positions.
- Approved job candidates must be notified about new positions for which they are qualified.
- Approved job candidate must have an option to accept a job assignment directly from a notification.
Configure a value for the execute workflow on redeeming contact option only.
To meet these requirements, (1. Human resources team members from the staffing company must be able to access the jobs listing and post available positions.
2. Employers seeking temporary employees must also be able to access the jobs listing and post available positions.
3. Approved job candidates must be notified about new positions for which they are qualified.
4. Approved job candidate must have an option to accept a job assignment directly from a notification.)
What feature creates invitation parameters for approved job candidates?
Configure a value for the Assigned to Account option only.
✑ When an online order for delivery is received, send the order to the bakery that is located closest to the order destination.
✑ When an online order for pickup is received, require store staff to enter an estimated time in an app. Staff must prepare the order and then use the app to notify the customer when the order is ready.
✑ Allow the store manager to personalize the companyג€™s corporate weekly newsletter and add store-specific specials.
Determine which store is closest to the order destination.
Power Automate flow
✑ When an online order for delivery is received, send the order to the bakery that is located closest to the order destination.
✑ When an online order for pickup is received, require store staff to enter an estimated time in an app. Staff must prepare the order and then use the app to notify the customer when the order is ready.
✑ Allow the store manager to personalize the companyג€™s corporate weekly newsletter and add store-specific specials.
Estimate the time required to prepare an order and notify the customer.
New screen in an existing order canvas app
✑ When an online order for delivery is received, send the order to the bakery that is located closest to the order destination.
✑ When an online order for pickup is received, require store staff to enter an estimated time in an app. Staff must prepare the order and then use the app to notify the customer when the order is ready.
✑ Allow the store manager to personalize the companyג€™s corporate weekly newsletter and add store-specific specials.
Send the newsletter by email to customers.
Power Automate flow triggered from an email button.
A company has an application that provides API access. You plan to connect to the API from a canvas app by using a custom connector.
You need to request information from the API developers so that you can create the custom connector.
Which two types of files can you use?
OpenAPI definition
Postman collection
You plan to create a canvas app to manage large sets of records. Users will filter and sort the data.
You must implement delegation in the canvas app to mitigate potential performance issues.
You need to recommend data sources for the app.
Which two data sources should you recommend?
SQL Server
Common Data Service
A client is deploying Dynamics 365 Finance without any third-party add-ons.
You need to select the appropriate solutions for the client.
What should you select?
Warehouse employees can use mobile devices to scan barcodes by using Dynamics 365 Finance.
Out-of-box
A client is deploying Dynamics 365 Finance without any third-party add-ons.
You need to select the appropriate solutions for the client.
What should you select?
The location of field technicians can be communicated with a text message from Dynamics 365 Field Service
Power Automate
A company uses Microsoft 365. You are developing a model-driven app.
The app must meet the following requirements:
Use SharePoint Online for document storage.
Send Emails by using Exchange Online.
What should you configure for Email?
What should you configure for Document Storage?
Email - Server-side synchronization
Document Storage - server-based integration
A company plans to create an order processing app. When orders are created, the app will perform complex business logic and integrate with several external systems.
Orders that have a large number of line items may take up to six minutes to complete. Processing for each order must be completed in one operation to avoid leaving records in an incomplete state.
What solution do you recommend?
A Webhook that Connects to an Azure Function.
You work for a not-for-profit agency that manages business processes by using Power Platform custom entities.
Volunteer registration and onboarding are manual processes that include multiple related entities.
You need to implement a portal solution that replaces the manual processes.
Which modules should you use…
for creating a portal by using a portal template?
for managing volunteer registration?
Customer self-service portal
Webform
You are implementing custom business logic in a Power Apps portal.
You need to use Liquid templates to display dynamic content.
To which three entities can you include Liquid code?
Content snippet
Web Page
Web Template
You are synchronizing company data from a SQL Server-based .NET application into a Common Data Service (CDS) environment.
The data is entered in both the SQL Server and CDS systems.
You have a program that includes the following code:
```var account = new Entity(“account”, “accountnumber”, “C0-555”);
account[“name”] = “Contoso”;
account[“creditlimit”] = new Money(100000);
var request = new UpsertRequest() {Target = account};
var response = (UpsertResponse)_serviceProxy.Execute(request);
T/F
Creating a new field to store the record identifier from the database resolves the error: the specified key attributes are not a defined key for the account entity.
No