Microsoft

PL-200 Free Practice Questions — Page 8

Question 71

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. A company uses a Dataverse environment. The environment is accessed from canvas and model-driven apps. The Dataverse environment contains a table that has the following columns: • Name • Company • Contacted On The company requires that the table not contain any duplicate rows when users create data in the environment. You need to implement a solution that meets the requirement. Solution: Create an alternate key for the columns. Does the solution meet the goal?

A. Yes
B. No
Show Answer
Correct Answer: A
Explanation:
An alternate key in Dataverse enforces uniqueness across one or more columns. Creating an alternate key on the relevant columns (Name, Company, and Contacted On) prevents records with the same combination of values from being created, satisfying the requirement to prevent duplicate rows at the platform level.

Question 72

A company is evaluating the capabilities in Dataverse and the scenarios for using virtual tables. You need to identify the capabilities of virtual tables. What is a capability of virtual tables?

A. Virtual tables store data in the Dataverse environment.
B. Virtual tables retrieve data from an external data source.
C. Virtual tables can be configured for user and team ownership.
D. Virtual tables support Dataverse auditing.
Show Answer
Correct Answer: B
Explanation:
Virtual tables in Microsoft Dataverse do not store data in Dataverse. They provide a representation of data that remains in an external system and is accessed through a virtual table data provider. Because the data is external, features such as Dataverse auditing and standard ownership semantics are not generally supported in the same way as regular tables.

Question 73

A company is implementing Microsoft Power Platform solutions. The company requests information on the features that are supported by Power Fx. You need to identify the features of Power Fx. What should you identify?

A. It uses an undefined value for uninitialized variables.
B. It uses formulas that are similar to Microsoft Excel formulas.
C. It uses synchronous data operations.
D. It uses the model-driven app formula language.
Show Answer
Correct Answer: B
Explanation:
Power Fx is a low-code, declarative formula language based on Microsoft Excel-style formulas. It does not use an 'undefined' value for uninitialized variables, data operations are generally asynchronous, and it is not the model-driven app formula language.

Question 74

DRAG DROP - A company uses Power Apps to create maintenance requests. The maintenance manager emails the manager of the department noted in the request. The maintenance manager wants to automate the email process when a new maintenance request is created. You need to build a Power Automate flow to automate the email process. Which three components should you add to the flow in sequence? To answer, move the appropriate components from the list of components to the answer area and arrange them in the correct order.

Illustration for PL-200 question 74
Show Answer
Correct Answer: Trigger Action Action
Explanation:
A Power Automate flow starts with a trigger, followed by actions. A condition is only needed if branching logic is required; retrieving data is also done through actions.

Question 75

You deploy a Power Virtual Agents chatbot that integrates with Dynamics 365 Omnichannel for Customer Service. You observe that the chatbot is not able to recognize the questions asked by users. You need to ensure that the chatbot can respond to unrecognized questions. The solution must minimize administrative effort. What should you do?

A. Add a fallback topic.
B. Create new topics.
C. Create an entity.
D. Modify the Escalate system topic.
Show Answer
Correct Answer: A
Explanation:
A fallback topic is designed to handle utterances that do not match any existing topic. It allows the chatbot to respond gracefully to unrecognized questions with minimal administration. Creating many new topics increases maintenance, entities are for extracting information rather than handling unmatched intents, and the Escalate system topic is for handoff rather than general unrecognized input handling.

Question 76

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. A company uses a model-driven app. The company needs to automatically update the Status column in real time. You need to configure this feature. Solution: Create a workflow that has a Change Status step. Does the solution meet the goal?

A. Yes
B. No
Show Answer
Correct Answer: B
Explanation:
The requirement is to update the Status column in real time. A workflow only satisfies this if it is explicitly configured as a real-time (synchronous) workflow. The proposed solution merely states to create a workflow with a Change Status step and does not specify that it is a real-time workflow, so it does not meet the stated goal as written. Sources: https://www.coursehero.com/file/p68s38ce/Question-15-Note-This-question-is-part-of-a-series-of-questions-that-present-the https://www.certlibrary.com/exam/70-774

Question 77

HOTSPOT - You use a dataflow to import data into Microsoft Dataverse. The data uses the following schema: The data must load in the least amount of time. You need to configure the incremental refresh settings for the dataflow. Which columns should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Illustration for PL-200 question 77 Illustration for PL-200 question 77
Show Answer
Correct Answer: Filter field: createdon Detect data changes: modifiedon
Explanation:
Incremental refresh partitions should be filtered by a Date/Time column representing record creation, while change detection should use the Date/Time column that updates when records are modified. This minimizes refresh work and supports efficient incremental loads.

Question 78

HOTSPOT - You plan to create a Power Virtual Agents bot. The bot has the following requirements: • Ensure that user responses are available to any topic. • Recognize a list of words from spoken language of users. You need to configure the bot. Which features should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Illustration for PL-200 question 78
Show Answer
Correct Answer: User responses are available to any topic: Bot variable Recognize a list of words from spoken language: Entity
Explanation:
Bot variables persist across topics within a conversation, while entities are used to recognize and extract predefined words or phrases from user input.

Question 79

HOTSPOT - You plan to create classic workflows for process automation on the Account table. The process automation has the following requirements: • If the Account Name column changes, a custom column named Previous Name must be updated with the original value. • If the Credit Limit column changes, an email must be sent to the record owner with the new value. • Asynchronous processes must be used whenever possible. You need to implement the process automation. What is the minimum number of workflows you should use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Illustration for PL-200 question 79
Show Answer
Correct Answer: Background: 1 Real-time: 1
Explanation:
Updating a field with the original (previous) value of Account Name requires access to the pre-update value, which is handled with a real-time workflow. Sending an email when Credit Limit changes can run asynchronously, so use one background workflow for that requirement.

Question 80

DRAG DROP - A company plans to create two Microsoft Power Platform applications. One of the applications requires a custom control layout without using code. The other application will be used primarily by external users. You need to create the applications. Which application types should you use? To answer, drag the appropriate application types to the correct requirements. Each application type may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.

Illustration for PL-200 question 80
Show Answer
Correct Answer: Custom control layout without coding → Canvas app Used by external users → Power Pages portal
Explanation:
Canvas apps provide fully customizable UI layouts with no-code/low-code design. Power Pages is designed for secure external-facing websites and applications for customers, partners, and other external users.

$19

Get all 301 questions with detailed answers and explanations

  • Instant download HTML + PDF delivered the moment payment clears.
  • Secure Stripe checkout we never see or store your card details.
  • 7-day refund if files are defective see our refund policy.