Exam2pass
0 items Sign In or Register
  • Home
  • IT Exams
  • Guarantee
  • FAQs
  • Reviews
  • Contact Us
  • Demo
Exam2pass > Microsoft > Microsoft Certifications > PL-400 > PL-400 Online Practice Questions and Answers

PL-400 Online Practice Questions and Answers

Questions 4

A travel company has a Common Data Service (CDS) environment. The company requires the following:

1.

Custom entities that track which regions clients have traveled.

2.

The dates their clients traveled to these regions.

You need to create the entities and relationships to meet the requirements.

Which three actions should you perform? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.

A. Create a N:N relationship from Contact to the Region entity.

B. Create a 1:N relationship from the ContactRegion intersect entity and Region.

C. Create an intersect entity named ContactRegion and create 1:N relationships to Contact and Region.

D. On the main form for ContactRegion, add lookup fields for Contact and Region, and a date field for the visit date.

E. Create a 1:N relationship from Contact to the Region entity.

F. Create the Region entity.

G. On the main form for ContactRegion, add a sub-grid to view country information.

H. Create an intersect entity named ContactRegion and create N:1 relationships to Contact and Region.

Buy Now

Correct Answer: CDF

Need a Region entity, a intersect entity ContactRegion between Contact and Region, and a way to input region visits.

Questions 5

You are creating a plug-in for an app that helps government employees get a proof of vaccination card. You must add the following information to a vaccination record before a proof of vaccination card is created:

1.

Vaccination type

2.

Date of vaccination

3.

Name of person administering the vaccine

You need to register the plug-in.

In which stage should you register the plug-in?

A. PreValidation

B. PostOperation

C. MainOperation

D. PreOperation

Buy Now

Correct Answer: D

1.

Pre-Validation: is before the record even reaching the stage of pre-operation, so means not yet saved, it is the first layer, usually used for validation, but not many people use this, usually will just use pre-operation.

2.

Pre-Operation: is also before the record created, not yet database transaction committed.

This is usually used to modify attribute value by system (logic code), validation as well.

Any changes of attribute in the pre-validation would be dismissed if you modify the attribute from this stage.

Since mentioned before, this is not yet created, so, there is no ID created at this point.

3.

Post-Operation: is after the record created, database transaction committed, and you would get the GUID.

Reference: https://community.dynamics.com/crm/f/microsoft-dynamics-crm-forum/216706/pre-validation-pre--operation-post-operation-stages

Questions 6

You create a plug-in to validate data.

Users report that validation is not working as expected.

You need to debug the plug-in.

Which tool should you use?

A. Plug-in profiler

B. Power Platform Tools for Visual Studio

C. Plug-in dashboard

D. Plug-in Registration Tool

Buy Now

Correct Answer: A

Because the plug-in executes on a remote server, you cannot attach a debugger to the plug-in process. The plug-in profiler captures a profile of an executing plug-in and allows you to re-play the execution of the plug-in using Visual Studio on

your local computer.

Install plug-in profiler

There are two tools available from which to run the Plug-in Profiler: the Plug-in Registration Tool and Power Platform Tools for Visual Studio.

Start profiling

Follow these steps to begin profiling a plug-in's execution.

1.

In the Plug-in Registration tool, select the (Step) BasicPlugin.FollowupPlugin: Create of account step you registered earlier, and click Start Profiling.

2.

When presented with the Profiler Settings dialog, accept the default settings and click OK to close the dialog. Reference: https://docs.microsoft.com/en-us/power-apps/developer/data-platform/tutorial-debug-plug-in

Questions 7

DRAG DROP

You are creating a business process flow for an organization's Request for Quote process.

You need to ensure that the business process flow meets the company's requirements.

Which components should you use? To answer, drag the appropriate components to the correct requirements. Each component may be used once, more than once, or not at all. You may need to drag the split bar between panes to scroll to

view content. Select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Select and Place:

Buy Now

Correct Answer:

Box 1: Step

Each step represents a field where data can be entered.

Stages tell you where you are in the process, while steps are action items that lead to a desired outcome.

Box 2: Branching condition

You can enhance a business process flow with branching. If you have the create permissions on business process flows, you’ll be able create business process flow with multiple branches by using the If-Else logic.

Box 3: Stage

Each stage contains a group of steps.

Incorrect Answers:

You can use custom controls to add rich visualizations (such as sliders, radial knobs, the LinkedIn control, and more) to business process flows steps and deliver engaging experiences to those who use your business process.

Reference:

https://docs.microsoft.com/en-us/power-automate/business-process-flows-overview

https://docs.microsoft.com/en-us/power-automate/enhance-business-process-flows-branching

Questions 8

DRAG DROP

A company uses Dynamics 365 Sales.

Sales commission must be calculated when an order is placed. You create an Azure Function to perform the calculation. The Azure Function has an HTTP trigger.

You need to configure the Plug-in Registration tool to send data to the Azure Function when an order is placed. You open the Plug-in Registration tool and connect to Dynamics 365 Sales.

Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Select and Place:

Buy Now

Correct Answer:

Questions 9

DRAG DROP

You are creating a PowerApps connector between Dynamics 365 Sales and Slack.

You must generate a Slack notification whenever a new product is added to Dynamics 365 Sales. You must not be required to sign in directly into Dynamics 365 Sales to generate notifications. You created a Power Apps connector between

Dynamics 365 Sales in Slack to enable this to happen.

You need to configure the appropriate security for each scenario?

Which security components should you configure?

NOTE: Each correct selection is worth one point.

Select and Place:

Buy Now

Correct Answer:

Box 1: Security roles

A security role defines how different users, such as salespeople, access different types of records. To control access to data, you can modify existing security roles, create new security roles, or change which security roles are assigned to

each user. Each user can have multiple security roles.

Security role privileges are cumulative: having more than one security role gives a user every privilege available in every role.

Each security role consists of record-level privileges and task-based privileges.

Box 2: OAuth

Oauth 2.0 is the most frequently used type, which uses the Oauth 2 authentication framework to authenticate with the service. Before using this authentication type, you'll need to register your application with the service so that it can receive

access tokens for the users.

For example, Register the application in Azure AD shows how to register an application with the Azure Active Directory service.

During the connection creation process, the user will be asked to enter the credentials for login to the service. These credentials will be used by the application to get an authorization token. For every request, this authorization token will be

sent to your service through the Authorization header.

Box 3: Basic Authentication

Basic Authentication is the simplest type of authentication, where the user just has to provide the username and password to create the connection.

Note: Before using any connector in Azure Logic Apps, Microsoft Power Automate, or Microsoft Power Apps, the user needs to create a connection by authenticating to the backend service.

Authentication types

The different types of authentication that are currently supported are:

No authentication

Basic authentication

Api Key based authentication

Oauth 2.0

Reference: https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/admin/security-roles-privileges https://docs.microsoft.com/en-us/connectors/custom-connectors/connection-parameters

Questions 10

HOTSPOT

You are troubleshooting Power Apps solutions.

You need to determine the cause for the identified issues.

What is the root cause for each issue? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Hot Area:

Buy Now

Correct Answer:

Questions 11

HOTSPOT

A university manages grant applications using a model-driven app.

Users report that the message on the Grant Application screen is outdated. The screen shows the following:

Use the drop-down menus to select the answer choice that answers each question based on the information presented in the graphic. NOTE: Each correct selection is worth one point.

Hot Area:

Buy Now

Correct Answer:

Reference: https://www.loganconsulting.com/blog/how-use-power-automate-trigger-workflows-microsoft-dynamics-crm/

Questions 12

HOTSPOT

A travel agency has a Dynamics 365 Customer Engagement.

Customers are allowed to add up to three countries/regions to their travel preferences from the website. Their preferences must be stored in the Contact entity.

You need to register the plug-in to meet the requirements.

Which value should you apply for each parameter? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Hot Area:

Buy Now

Correct Answer:

Box 1: associate

Box 2: contact Customers are allowed to add up to three countries/regions to their travel preferences from the website. Their preferences must be stored in the Contact entity. Box 3: country Box 4: synchronous

Questions 13

HOTSPOT

You need to synchronize pharmacy names and ensure that Dynamics 365 Sales data propagates correctly to the Cerner system.

What should you do? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Hot Area:

Buy Now

Correct Answer:

Box 1: Use a Data Integration template in Power Apps.

Ensure that the names of the pharmacies are synced between the accounting and the customer management systems.

Note: The Data Integrator (for Admins) is a point-to-point integration service used to integrate data into Dataverse. It supports integrating data between Finance and Operations

apps and Dataverse. It also supports integrating data into Finance and Operations apps and Dynamics 365 Sales.

The Data Integrator (for Admins) consists of the Data Integration platform, out-of-the-box templates provided by our application teams (for example, Finance and Operations apps and Dynamics 365 Sales) and custom templates created by

our customers and partners.

Box 2: Create a workflow in Dynamics 365 Sales.

Account numbers should be entered automatically into the pharmaceutical system that is in a Cerner database and kept in sync.

Note: Start When: Use the options in this section to specify when a workflow should start automatically. You can configure a real-time workflow to be run before certain events. This is a very powerful capability because the workflow can stop

the action before it occurs. The options are:

1.

Record is created

2.

Record status changes

3.

Record is assigned

4.

Record fields change

5.

Record is deleted

Exam Code: PL-400
Exam Name: Microsoft Power Platform Developer
Last Update: Jun 13, 2025
Questions: 407

PDF (Q&A)

$45.99
ADD TO CART

VCE

$49.99
ADD TO CART

PDF + VCE

$59.99
ADD TO CART

Exam2Pass----The Most Reliable Exam Preparation Assistance

There are tens of thousands of certification exam dumps provided on the internet. And how to choose the most reliable one among them is the first problem one certification candidate should face. Exam2Pass provide a shot cut to pass the exam and get the certification. If you need help on any questions or any Exam2Pass exam PDF and VCE simulators, customer support team is ready to help at any time when required.

Home | Guarantee & Policy |  Privacy & Policy |  Terms & Conditions |  How to buy |  FAQs |  About Us |  Contact Us |  Demo |  Reviews

2025 Copyright @ exam2pass.com All trademarks are the property of their respective vendors. We are not associated with any of them.