[Oct-2021] The Best Microsoft Certified: Power Platform Developer Associate PL-400 Professional Exam Questions
Try 100% Updated PL-400 Exam Questions [2021]
Topics of Microsoft PL-400: Microsoft Power Platform Developer Exam
Candidates should apprehend the examination topics before they begin preparation, because it’ll extremely facilitate them in touch the core. Our PL-400 dumps will include the following topics:
Validate requirements and design technical architecture
- Determine when to use serverless computing, plug-ins, or Power Automate
- Determine when to build a virtual entity data source provider and when to use connectors
- Design and validate the technical architecture for a solution
- Design authentication and authorization strategy
- Determine whether you can meet requirements with out-of-the-box functionality
- Determine when to use Logic Apps versus Power Automate flows
Design solution components
- Design Power Apps reusable components
- Design server-side components
- Design custom connectors
- Design a data model
Describe Power Platform extensibility points
- Describe Power BI extensibility points including Power BI APIs, custom visuals, and embedding Power BI apps in websites and other applications
- Describe Power Virtual Agents extensibility points including Bot Framework skills and Power Automate flows
- Describe Power Apps portal extensibility points including CRUD APIs and custom styling
Configure security to support development
- Create or update security roles and field-level security profiles
- Troubleshoot operational security issues
- Configure business units and teams
Implement entities and fields
- Configure fields
- Configure entity and entity options
- Configure relationships and types of behaviors
Implement application lifecycle management (ALM)
- Import and export solutions
- Manage solution dependencies
- Implement source control for projects including solutions and code assets
- Create a package for deployment
- Create solutions and manage solution components
- Automate deployments
Create a plug-in
- Debug and troubleshoot a plug-in
- Implement business logic by using pre and post images
- Perform operations on data by using the Organization service API
- Design and develop a plug-in
- Develop a plug-in that targets a custom action message
- Describe the plug-in execution pipeline
- Optimize plug-in performance
- Register custom assemblies by using the Plug-in Registration Tool
Create custom connectors
- Use policy templates to modify connector behavior at runtime
- Create a definition for the API
- Configure API security
- Create custom connectors for public APIs by using Postman
- Expose Azure Functions as custom connectors
Use platform APIs
- Query the Discovery service to discover the URL and other information for an organization
- Interact with data and processes by using the Common Data Service Web API or the Organization Service
- Implement API limit retry policies
- Optimize for performance, concurrency, transactions, and batching
- Perform authentication by using OAuth
- Perform entity metadata operations with the Web API
Process workloads
- Configure scheduled and event-driven function triggers in Azure Functions
- Process long-running operations by using Azure Functions
- Authenticate to the Power Platform by using managed identities
NEW QUESTION 45
You are creating a Power Apps app that retrieves customer information from Azure Active Directory when you use the app to look up a customer record.
You create an Azure Function by using JSON code to retrieve the customer information.
You need to make the application work.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
- A. Create a Power Automate flow to import data.
- B. Copy your JSON code to the app.
- C. Create an API definition for the Azure Function.
- D. Create a custom connector that uses the Azure Function API.
- E. Create a custom connector that uses the JSON code.
Answer: C,D
Explanation:
Explanation
E: Before exporting an API, you must describe the API using an OpenAPI definition.
B: This OpenAPI definition contains information about what operations are available in an API and how the request and response data for the API should be structured. PowerApps and Microsoft Flow can create custom connectors for any OpenAPI 2.0 definition.
Reference:
https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/azure-functions/app-service-export-api-topow
NEW QUESTION 46
A manufacturing company takes online orders.
The company requires automatic validation of order changes. Requirements are as follows:
If validation is successful, the order is submitted.
If exceptions are encountered, a message must be shown to the customer.
You need to set up and deploy a plug-in that encapsulates the rules.
Which options should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/event-framework
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/handle-exceptions
NEW QUESTION 47
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.
Answer:
Explanation:
Reference:
https://www.loganconsulting.com/blog/how-use-power-automate-trigger-workflows-microsoft-dynamics-crm/
NEW QUESTION 48
A company uses the Data Export Service (DCS) to refresh their Azure SQL Data Warehouse instance. The data warehouse is used for historical trend analysis and forecasting.
The refresh process from the Common Data Service (COS! environment lo the data warehouse has errors. Users report that data is missing.
A CDS lest environment that contains DES is available to troubleshoot the import outside of the production environment. You create a new database for testing.
You need to configure the lest environment to point to the new database.
What should you create first lo access the database?
- A. A new secret In Azure Key Vault
- B. A new export profile in CDS test
- C. A new application registration
- D. A new user in the SQL database
Answer: A
Explanation:
Because this service requires access to an external Microsoft Azure SQL Database from Dynamics 365 (online), a number of prerequisites must be satisfied before you can successfully access this service including:
Global / Tenant Admin access, or an Azure Key Vault must be provisioned and the setup user must have permissions on Secrets.
Reference:
https://blog.crgroup.com/dynamics-365-latest-feature-the-data-export-service/
NEW QUESTION 49
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
An organization has an Azure SQL Database instance that must be synchronized daily with data from Dynamics 365 Sales. A large amount of data might need to be synchronized on some days.
You need to reduce the time required to synchronize data.
Solution:
* Enable change tracking for entities that will be synchronized.
* Implement a console application that queries for changes.
Does the solution meet the goal?
- A. No
- B. Yes
Answer: A
Explanation:
Explanation
Instead use the Data Export Service to sync data between the database and Dynamics 365 Sales.
References:
https://docs.microsoft.com/en-us/power-platform/admin/enable-change-tracking-control-data-synchronization
NEW QUESTION 50
A company imports data from files.
The following code is created to import the files. (Line numbers are included for reference only.)
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Explanation
Box 1: No
Need to set ContinueOnError=True. ContinueOnError: When true, continue processing the next request in the collection even if a fault has been returned from processing the current request in the collection. When false, do not continue processing the next request.
Box 2: No
ContinueOnError = true must be added before Requests = new OrganizationRequestCollection() on line 3.
Example:
// Create an ExecuteMultipleRequest object.
requestWithResults = new ExecuteMultipleRequest()
{
// Assign settings that define execution behavior: continue on error, return responses.
Settings = new ExecuteMultipleSettings()
{
ContinueOnError = false,
ReturnResponses = true
},
// Create an empty organization request collection.
Requests = new OrganizationRequestCollection()
};
Box 3: Yes
You can use the ExecuteMultipleRequest message to support higher throughput bulk message passing scenarios in Common Data Service. ExecuteMultipleRequest accepts an input collection of message Requests, executes each of the message requests in the order they appear in the input collection, and optionally returns a collection of Responses containing each message's response or the error that occurred.
Box 4: No
This is just for displaying the result.
Reference:
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/org-service/execute-multiple-reque
NEW QUESTION 51
A company uses a model-driven app to record details of laboratory test.
You are asked to create a custom component that makes it easier to capture multiple values from lab test results on mobile devices.
You need to create the interface for the dataset in case the mobile devices lose connection to the network.
Which method should you use?
- A. getClient
- B. init
- C. updateView
- D. SaveData
Answer: D
Explanation:
Use LoadData and SaveData for basic data storage while offline.
Note:
When building mobile apps, one of the most common scenarios app makers face is how to enable their users be productive in situations where there is limited or no connectivity at all. This has been one of the most requested features for PowerApps to allow running apps while being disconnected and to provide some support for offline data caching. In this release of PowerApps, we are delivering the first set of improvements for app makers to achieve that by enabling:
1. Launching the PowerApps mobile player app offline
2. Running apps while being offline
3. Determine when your app is online or offline or in a metered connection by using the Connection signal object.
4. Leverage existing formulas such as LoadData and SaveData for basic data storage while offline.
Reference:
https://powerapps.microsoft.com/sv-se/blog/build-offline-apps-with-new-powerapps-capabilities/
NEW QUESTION 52
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.
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/powerapps/maker/common-data-service/common-issues-resolutions-solution-checker
NEW QUESTION 53
An organization uses Dynamics 365 Sales. The organization has accounting and customer service departments.
You must restrict users in customer service from being able to change the value of the balance field on the Contact records. The accounting team must be the only team able to edit this field.
You need to create the appropriate solution without any customizations.
What should you do first?
- A. Enable field security for the balance field and grant the accounting team read permissions.
- B. Create a customer service form and role and make the balance field read-only.
- C. Enable field security for the balance field and grant the customer service team read and update permissions.
- D. Enable field security for the balance field and grant the customer service team read permissions.
Answer: D
Explanation:
Reference:
https://docs.microsoft.com/en-us/dynamics365/customer-service/create-design-forms-customer-service-hub
NEW QUESTION 54
A company has a Common Data Service (CDS) environment.
The following conditions must apply when accounts are reassigned:
Ownership for completed tasks that are associated with the account must not change.
Outstanding tasks must be reassigned to the new owner of the account.
You need to configure the relationship to meet the requirements.
Which settings should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/configure-entity-relationship-cascading-behavior
NEW QUESTION 55
A customer wants to design a complex business process flow that includes six custom entities and four stages for each entity. One of the stages will have 15 steps.
You need to explain the flaw in this design to the customer.
What is the flaw in this design?
- A. The maximum number of custom entities has been exceeded.
- B. The maximum number of stages for an entity has been exceeded.
- C. The minimum number of stages for an entity has not been met.
- D. The minimum number of steps for a stage has not been met.
- E. The maximum number of steps for a stage has been exceeded.
Answer: A
Explanation:
Maximum number of processes, stages, and steps:
To ensure acceptable performance and the usability of the user interface, there are some limitations you need to be aware of when you plan to use business process flows:
Multi-entity processes can contain no more than five entities.
There can be no more than 10 activated business process flow processes per entity.
Each process can contain no more than 30 stages.
Reference:
https://docs.microsoft.com/en-us/power-automate/business-process-flows-overview
NEW QUESTION 56
A company implements Dynamics 365 Sales.
An email notification must be sent automatically to the sales manager when a business process completes.
You need to ensure that emails are sent.
What should you create on the process completed trigger?
- A. an action step
- B. a Power Automate flow step
- C. a data step
- D. a workflow
Answer: D
Explanation:
When you include a workflow that you want to trigger on Stage Exit of a stage in your business process flow, and that stage is the last stage in the flow, the designer gives the impression that the workflow will be triggered when that stage is completed.
Reference:
https://docs.microsoft.com/en-us/dynamics365/customerengagement/on-premises/customize/business- process-flows-overview Extend the user experience Testlet 1 Case study This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.
To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section.
To start the case study
To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the Question button to return to the question.
Background
Bellows Sports is the region's newest, largest, and most complete sports complex. The company features baseball and soccer fields and two full-size hockey rinks. The complex provides coaching, recreational leagues, a pro shop, and state-of-the art customer and player amenities.
The company is organized into the following divisions:
* Baseball
* Hockey
* Soccer
Bellow Sports runs tournaments several times per year. Each tournament runs six weeks.
Current environment
Requirements
Bellow Sports tracks players and events in Microsoft Excel workbooks and uses email to communicate with players, partners, and prospective customers. The company uses a proprietary cloud-based accounting system.
The company relies on referrals from athletes for new business. Bellows uses a third-party marketing company to gather feedback and referrals from athletes. The third-party marketing company uploads a Microsoft Excel file containing lists of potential customers and players to the FTP site that Bellows Sports maintains.
Tournaments
Customer information is stored in the Accounts entity. Each tournament record must list the associated sales representative as the tournament owner. When team members create tournament records they must enter the start date for a tournament. The end date of the tournament must be automatically calculated.
Registration form
You must create a form to allow players to register for tournaments. The registration form must meet the following requirements:
* Each division has tournaments that take place in specific locations. Users must be able to select the division for a tournament location.
* Information about upcoming tournaments must be pre-located into the registration form when the registration form loads.
* The form must include a custom button that sends an email confirmation to the player after the player registers.
* The button must not be visible until after the form is saved.
Security
The company identifies the following job roles:
You must grant users the minimum permissions required to perform their job tasks.
Data automation
* Customer name must be added to Dynamics 365 Finance automatically after it is entered.
* You must produce a report that details the number of registrations for a day and send the report as a PDF to the management team.
* You must implement mechanisms to handle all code-related errors.
* When a customer record is updated, the system must look up the account number for the customer in the accounting system.
* Referrals must be imported into the system as soon as they are available.
Issues
Apps
* The captions for the New and Save buttons do not render properly on the form.
* Interns can create apps but cannot interact with their own data.
Portal
The query for all registered users must return the data categorized by division. Queries must return only the Name and Sport fields. Queries return all fields. The query is as follows:
Solution checker issues
You run solution checker and observe Plug-in or workflow activity errors in the following code sets:
Code
The following code runs when the registration form loads. You must implement a mechanism to handle errors that occur in the code:
NEW QUESTION 57
You open a canvas app in edit mode. A warning message displays as shown in the graphic.
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.
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/use-native-cds-connector
NEW QUESTION 58
You have a Common Data Service entity and a model-driven app. The model-driven app integrates with an external system.
You plan to run business logic each time the model-driven app creates a record. Running business logic must not negatively affect model-driven app users.
You need to implement the business logic.
What should you use?
- A. Synchronous workflow
- B. Synchronous plug-in registered in the PreOperation stage
- C. Asynchronous plug-in registered in the PostOperation stage
Answer: C
Explanation:
Explanation
The asynchronous service executes long-running operations independent of the main Microsoft Dataverse core operation. This results in improved overall system performance and improved scalability.
Reference:
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/asynchronous-service
NEW QUESTION 59
You are creating a model-driven app to track the time that employees spend on individual projects.
You need to configure the app according to the company's requirements.
Which components should you configure? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Explanation
Box 1: View
Box 2: Quick Create
With quick create forms, your app can have a streamlined data entry experience with full support for logic defined by form scripts and business rules.
By default only these system tables have quick create forms: account, campaign response, 1case, competitor, contact, lead, opportunity.
Reference:
https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/customize-entity-views
https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/create-edit-quick-create-forms
NEW QUESTION 60
A school district wants to standardize student information and student performance records. Students in the district are assigned to a specific school. Students are evaluated using class records.
When students move between schools in the middle of a school year, the student's current class history must be available to the administrators at the new school.
You need to configure Microsoft Dataverse tables to connect the class history records to their respective class records.
How should you configure the table? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/powerapps/developer/data-platform/user-team-entities
https://docs.microsoft.com/en-us/powerapps/maker/data-platform/create-edit-entity-relationships#types-of-table-relationships
NEW QUESTION 61
You create a Power Apps app that integrates with Dynamics 365 Customer Service.
You update the app and run solution checker on the original solution. You receive an error stating solution checker cannot export the solution.
You need to determine the primary cause for the issue.
What is the primary cause?
- A. Solution checker cannot check default solutions.
- B. The solution was not exported before running solution checker.
- C. The original solution is locked because there is a dependent patch.
- D. The environment is an Administrator mode.
Answer: C
Explanation:
Solution checker fails to export patched solutions.
If a solution has had a patch applied, Solution Checker will fail to export the solution for analysis. When a solution has had a patch applied, the original solution becomes locked and it can't be changed or exported as long as there are dependent patches that exist in the organization that identify the solution as the parent solution.
To resolve this issue, clone the solution so that all patches related to the solution are rolled into the newly created solution. This unlocks the solution and allows the solution to be exported from the system.
Reference:
https://docs.microsoft.com/en-us/powerapps/maker/common-data-service/common-issues-resolutionssolution- checker#solution-checker-fails-to-export-solutions-with-model-driven-app-components
NEW QUESTION 62
You need to replace the bicycle inspection forms.
Which two solutions should you use? Each answer presents part of the solution.
NOTE: Each correct selection is worth one point.
- A. a canvas app that guides the technician through the inspection
- B. a flow that maps inspection data to Dynamics 365 Field Service
- C. a logic app that guides the technician through the inspection
- D. a model-driven app based on customer service entities
Answer: B,D
NEW QUESTION 63
You work for a multinational company that has Azure and Common Data Service environment in the United States (UTC-7) and Japan (UTC+9).
You create Azure Functions for each location to update key data.
You need to configure the functions to run at 4:00 AM on weekdays at each location.
Which schedule formats should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer?
NEW QUESTION 64
You need to configure that the mobile app meets the requirements for phone entries.
Which expression should you use?
- A. IsType
- B. IsNumeric
- C. PlainText
- D. IsMatch
Answer: B
Explanation:
Scenario: When a pharmacy is added by using the mobile app, the phone number must be validated to be all digits.
NEW QUESTION 65
You work for a multinational company that has Azure and Common Data Service environment in the United States (UTC-7) and Japan (UTC+9).
You create Azure Functions for each location to update key data.
You need to configure the functions to run at 4:00 AM on weekdays at each location.
Which schedule formats should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Explanation
Box 1: 0 0 4 * * 1-5
Azure Functions uses the NCronTab library to interpret NCRONTAB expressions.
An NCRONTAB expression is similar to a CRON expression except that it includes an additional sixth field at the beginning to use for time precision in seconds:
{second} {minute} {hour} {day} {month} {day-of-week}
NCRONTAB time zones
The numbers in a CRON expression refer to a time and date, not a time span. For example, a 5 in the hour field refers to 5:00 AM, not every 5 hours.
The default time zone used with the CRON expressions is Coordinated Universal Time (UTC).
To have your CRON expression based on another time zone, create an app setting for your function app named WEBSITE_TIME_ZONE.
1-5 is weekdays
Box 2: 0 0 4 * * 1-5
Reference:
https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer?
NEW QUESTION 66
......
Requirements to Fulfill
If you are interested in taking the Microsoft PL-400 exam, you should have a strong applied knowledge of Power Platform services, including an in-depth understanding of constraints, capabilities, and boundaries. A potential candidate needs to have a basic understanding of DevOps practices for Power Platform. If you have some development experience working with Power Platform services, Microsoft Azure, JSON, RESTful web services, C#, .NET, ASP.NET, and Microsoft Power BI, it will be your advantage over other students. However, regardless of your knowledge background, the most important task will be to learn all the required topics.
Preparation Guide for Microsoft PL-400: Microsoft Power Platform Developer Exam
Introduction
Microsoft has created a track for professionals who aspire towards productivity enhancement by inculcating automation in business processes, analyzing data to produce business insights, and acting more effectively by creating simple app experiences. This certification program provides Microsoft Power Platform Fundamentals (beta) a way to demonstrate their skills. The assessment is based on a rigorous exam using the industry-standard methodology to determine whether a candidate meets Microsoftâs proficiency standards.
According to Microsoft, a Microsoft Certified Professional enables organizations to leverage Microsoft Power Platform Fundamentals (beta) technologies by identifying the basic functionality and business value Power Platform components; implement simple solutions with Microsoft Flow, Power BI, and AI Builder.
Certification is evidence of your skills, expertise in those areas in which you like to work. If a candidate wants to work on Microsoft Azure for SAP Workloads and prove his knowledge, certification is offered by Microsoft. This PL-400 exam Certification helps a candidate to validates his skills in Microsoft Power Platform Technology.
In this guide, we will cover the Microsoft PL-400 dumps, Microsoft PL-400: Microsoft Power Platform Developer Certified professional salary, and all aspects of the Microsoft PL-400 practice exams.
PL-400 Exam Questions Get Updated [2021] with Correct Answers: https://www.examstorrent.com/PL-400-exam-dumps-torrent.html
Pass PL-400 Exam - Real Questions & Answers: https://drive.google.com/open?id=1Yj-lb6_YwIYvxtwZnWIc4IHQVTlmUBYe