Download Microsoft Power Platform Developer.PL-400.PassLeader.2022-06-12.85q.vcex

Vendor: Microsoft
Exam Code: PL-400
Exam Name: Microsoft Power Platform Developer
Date: Jun 12, 2022
File Size: 4 MB

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Purchase
Coupon: EXAM_HUB

Discount: 20%

Demo Questions

Question 1
As part of the month-end financial closing process, a company uses a batch job to copy all orders into a staging database. The staging database is used to calculate any outstanding amounts owed by clients, and must process all historical data. You need to ensure that only the data affected during the month is included in the integration process. What are two possible ways to achieve this goal? (Each correct answer presents a complete solution. Choose two.)
  1. Use change tracking on the orders and run the integration to retrieve new orders and the orders that have the total amount changed in the last month.
  2. Create a system view with the orders that have the Modified On field in the last month and run the integration on this subset.
  3. Use change tracking on the order lines and run the integration every week and retrieve only the order lines that have been created or deleted in the last month.
  4. Create a system view with the order lines that have the Modified On field in the last month and run the integration on this subset.
Correct answer: CD
Explanation:
C: The change tracking feature in Microsoft Dataverse provides a way to keep the data synchronized in an efficient manner by detecting what data has changed since the data was initially extracted or last synchronized. Deletions and creations are tracked.  D: On modified Order Lines, not on Modified Orders. https://docs.microsoft.com/en-us/powerapps/developer/data-platform/use-change-tracking-synchronize-data-external-systems  https://docs.microsoft.com/en-us/powerapps/developer/data-platform/behavior-format-date-time-attribute
C: The change tracking feature in Microsoft Dataverse provides a way to keep the data synchronized in an efficient manner by detecting what data has changed since the data was initially extracted or last synchronized. Deletions and creations are tracked.  
D: On modified Order Lines, not on Modified Orders. 
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/use-change-tracking-synchronize-data-external-systems  
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/behavior-format-date-time-attribute
Question 2
A company is creating a one-way integration from the Common Data Service to an external system.  
Data will be sent from a webhook to an Azure Function. You need to configure the Azure Function to handle data from the webhook. Which class and data type must the Azure Function handle?
  1. RemoteExecutionContext in .NET binary format.
  2. RemoteExecutionContext in JSON format.
  3. RemoteExecutionContext in XML format.
  4. IPIuginExecutionContext in JSON format.
  5. IPIuginExecutionContext in XML format. 
Correct answer: B
Explanation:
The body will contain string that represents the JSON value of an instance of the RemoteExecutionContext class.  https://docs.microsoft.com/en-us/powerapps/developer/data-platform/use-webhooks
The body will contain string that represents the JSON value of an instance of the RemoteExecutionContext class.  
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/use-webhooks
Question 3
A company is migrating from an on-premises Dynamics 365 installation to a Power Platform solution. You are creating plug-ins for the new solution. You need to register the plug-ins. Which isolation mode should you use?
  1. None
  2. Global Assembly Cache (GAC)
  3. Sandbox
  4. Disk
Correct answer: C
Explanation:
You will find options related to the isolation mode and location for the assembly. These refer to options that apply to on-premise deployments. Dataverse is not available for on-premises deployments, so you will always accept the default options of SandBox and Database for these options.  https://docs.microsoft.com/en-us/powerapps/developer/data-platform/register-plug-in
You will find options related to the isolation mode and location for the assembly. These refer to options that apply to on-premise deployments. Dataverse is not available for on-premises deployments, so you will always accept the default options of SandBox and Database for these options.  
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/register-plug-in
Question 4
An organization uses a public-facing Power Apps portal. You need to change the layout of a specific web page. What are two possible ways to achieve the goal? (Each correct answer presents a complete solution. Choose two.)
  1. Select the Portal Management app and then select Edit.
  2. Select the Portal Management app and then select Play.
  3. Select the portal app and then select Manage.
  4. Select the portal app and then select Edit.
Correct answer: AD
Explanation:
https://docs.microsoft.com/en-us/powerapps/maker/portals/configure/web-page https://docs.microsoft.com/en-us/powerapps/maker/portals/compose-page
https://docs.microsoft.com/en-us/powerapps/maker/portals/configure/web-page 
https://docs.microsoft.com/en-us/powerapps/maker/portals/compose-page
Question 5
You are developing a model-driven app. The app uses data from two custom tables. The tables have a parent-child relationship. The parent record form contains a subgrid that displays the child records. When creating a new child record from the parent form, data must automatically populate in the child record form to reduce data input errors. You need to implement the solution. What should you do?
  1. Use a Power Automate flow to read data from the parent record and update the child record upon creation.
  2. Map table columns from the parent record to the child record.
  3. Create a business rule that sets the default values on the child record fields to values from the parent record.
  4. Include a quick view form on the child record showing the data from the parent record.
Correct answer: B
Explanation:
A subgrid exists within a main form and let app users view data within a Dataverse table, typically related to the record currently being reviewed.  https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/sub-grid-properties-legacy
A subgrid exists within a main form and let app users view data within a Dataverse table, typically related to the record currently being reviewed.  
https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/sub-grid-properties-legacy
Question 6
You are developing a Power Platform solution for a medical practice. You create a custom table named Doctors to record details about the doctors who work at the medical practice. You must be able to attach a PDF copy of a doctor's medical license to the row for each doctor. You need to configure the table. What should you do?
  1. Create a Power Automate flow to add attachments.
  2. Navigate to Table options and enable attachments.
  3. Navigate to Column options and enable attachments.
  4. Create relationships between the Doctor table and the Notes table.
Correct answer: C
Explanation:
A file column is used for storing file data up to a specified maximum size. A custom or customizable table can have zero or more file columns plus a notes (annotation) collection with zero to one attachment in each note.  https://docs.microsoft.com/en-us/powerapps/developer/data-platform/file-attributes
A file column is used for storing file data up to a specified maximum size. A custom or customizable table can have zero or more file columns plus a notes (annotation) collection with zero to one attachment in each note.  
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/file-attributes
Question 7
You plan to populate records in a Common Data Service entity containing an option set field. The source system has the label for the option set but not the corresponding integer value. You are using a non .NET programming language. You need to find the integer value for the option set.  
What should you do?
  1. Use Web API and use a PicklistAttibuteMetadata request.
  2. Use the Organization service and execute a RetrieveOptionSetRequest request.
  3. Use Web API and use an InsertOptionValue action.
  4. Use the Organization service and execute a RetrieveAttributeRequest request.
Correct answer: B
Explanation:
You can retrieve a global choice (option set) by name (label) using the RetrieveOptionSetRequest message.  https://docs.microsoft.com/en-us/powerapps/developer/data-platform/org-service/metadata-option-sets
You can retrieve a global choice (option set) by name (label) using the RetrieveOptionSetRequest message.  
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/org-service/metadata-option-sets
Question 8
You create a Power Automate flow that retrieves data from a proprietary database. You need to ensure that the flow works for other users. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
  1. Share a view with users.
  2. Share the custom connector with users.
  3. Share the flow with users.
  4. Share the environment by giving permissions to the users.
Correct answer: BC
Explanation:
Share the flow and the custom connector with users.  https://docs.microsoft.com/en-us/connectors/custom-connectors/share 
Share the flow and the custom connector with users.  
https://docs.microsoft.com/en-us/connectors/custom-connectors/share 
Question 9
You are creating a model-driven app. A JavaScript function must be manually initiated by the user from within an entity form. You need to add a button to the form to run the JavaScript. What should you do?
  1. Use the Ribbon Workbench.
  2. Edit the SiteMap.
  3. Edit the XML for the form.
  4. Edit ISV.Config.
  5. Export the ribbon definitions.
Correct answer: A
Explanation:
How to add JavaScript to existing button in Ribbon WorkBench. Open Ribbon workbench and Right click on Assign button from Account form and click on Customize Button. Add Enable rule and call Javascript function.  https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/customize-commands-ribbon
How to add JavaScript to existing button in Ribbon WorkBench. Open Ribbon workbench and Right click on Assign button from Account form and click on Customize Button. Add Enable rule and call Javascript function.  
https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/customize-commands-ribbon
Question 10
You are creating a canvas app for a bank. Consumers will enter information into the app when they apply for a loan. The input form for the app must display fields to prompt the consumer for their first name, last name, address, and the requested loan amount. Immediately after a consumer enters a value for the LoanAmount field, the background color for the column must change. The background color for the column must change to red if a consumer enters a value of more than $5,000 and must turn green for values less than or equal to $5,000. You need to implement the required behavior. Which option should you use?
  1. Create a Power Automate flow.
  2. Configure field properties.
  3. Add a business rule to the form.
  4. Add a formula to the LoanAmount field.
Correct answer: D
Explanation:
Conditional formatting in Power Apps can be done with formulas.  https://powerapps.microsoft.com/en-us/blog/conditional-formatting-in-powerapps/
Conditional formatting in Power Apps can be done with formulas.  
https://powerapps.microsoft.com/en-us/blog/conditional-formatting-in-powerapps/
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX AND EXAM FILES

Use ProfExam Simulator to open VCEX and EXAM files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!