PL-400 Dumps

PL-400 Free Practice Test

Microsoft PL-400: Microsoft Power Platform Developer

QUESTION 71

- (Topic 6)
You are creating a new page for a Power Apps portal.
You need to display data from Microsoft Dataverse on the page. What should you use?

Correct Answer: A
Liquid is an open-source template language that is integrated natively into Microsoft Power Apps portals. It acts as a bridge between Dataverse and the HTML or text output that is sent to the browser. Liquid can be used to add dynamic content to pages and to create a variety of custom templates. Additionally, Liquid provides access only to the data and operations that are explicitly allowed by the portals.
Reference:
https://docs.microsoft.com/en-us/learn/modules/liquid-template-language/

QUESTION 72

- (Topic 6)
A company designs data integration with an external system by using virtual tables. You need to implement the virtual tables.
Solution: Use a table that has a GUID as its primary key. Does the solution meet the goal?

Correct Answer: A
If all the entities in external data source have an associated GUID primary key then we can implement the virtual entities for sure. For Reference: https://learn.microsoft.com/en- us/dynamics365/customerengagement/on-premises/developer/virtual-entities/get-started- ve?view=op-9-1

QUESTION 73

HOTSPOT - (Topic 6)
You develop the following code as part of an OnSave event handler in a form.
PL-400 dumps exhibit
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
PL-400 dumps exhibit
Solution:
PL-400 dumps exhibit

Does this meet the goal?

Correct Answer: A

QUESTION 74

- (Topic 6)
You develop a model-driven app. You add the following users as members to the Sales Microsoft Azure Active Directory (Azure AD) security group: User1, User2 and User3.
The Sales Azure AD security group is linked to a pre-existing Microsoft Dataverse Azure AD security group team that is associated with the Sales security role. You assign each of the appropriate licenses to each user
User1 is not listed in the Team Members subgrid for the app. user2 and User3 are listed in the subgrid.
You need to ensure that User1 can use the model-driven app What should you do?

Correct Answer: A

QUESTION 75

HOTSPOT - (Topic 6)
A delivery service uses a canvas app to track and deliver packages. The app uses SQL Server as a data store. The database includes the following tables:
PL-400 dumps exhibit
The app includes the following code to save all required information. (Line numbers are included for reference only.)
PL-400 dumps exhibit
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
PL-400 dumps exhibit
Solution:
The ClearCollect function deletes all the records from a collection. Syntax: ClearCollect( Collection, Item, ... )
Collection – Required. The collection that you want to clear and then add data to. Item(s) - Required. One or more records or tables to add to the data source.
Box 1: Yes
The Patch function in Power Apps modifies or creates one or more records in a data source, or merges records outside of a data source.
Use Patch with the Defaults function to create records.
Box 2: No
The return value of Patch is the record that you modified or created. If you created a record, the return value may include properties that the data source generated automatically. However, the return value doesn't provide a value for fields of a related table.
For example, you use Set(MyAccount, Patch(Accounts, First(Account), 'Account Name': "Example name"); and then MyAccount.'Primary Contact'.'Full Name'. You can't yield a full name in this case. Instead, to access the fields of a related table, use a separate lookup such as:
LookUp(Accounts, Account = MyAccount.Account).'Primary Contact'.'Full Name Box 3: Yes
Box 4: Yes
Merge records outside of a data source.
Specify two or more records that you want to merge. Records are processed in the order from the beginning of the argument list to the end, with later property values overriding earlier ones.
Patch returns the merged record and doesn't modify its arguments or records in any data sources.

Does this meet the goal?

Correct Answer: A