HOTSPOT
-
You are building a model-driven app for a company.
You identify several custom commands that the app must support, including the following commands:
• Save a row.
• Move the user to a different row in the application.
• Navigate the user to an external webpage.
• Show a notification that the user can accept or decline.
You need to identify the formula to use for each requirement.
Which formulas should you identify? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Show Answer
Correct Answer: Save a row: Patch()
Move to a different row: Navigate()
Navigate to an external webpage: Launch()
Show a notification with options: Confirm()
Explanation: In model-driven app command formulas, Patch updates/saves a Dataverse row, Navigate moves within the app, Launch opens an external URL, and Confirm displays a dialog with accept/cancel options.
Question 42
You are creating a model-driven app that has an embedded Power BI report. Another functional consultant set up an environment variable for the report.
You add the dashboard to a solution in the development environment and then import the changes to a production environment as a managed solution.
When you test the report, the data appears the same as it did in the development environment.
You delete the solution in production.
You need to resolve the development environment issue before redeploying the solution.
What should you do?
A. Update the environment variable current value
B. Remove the environment variable current value.
C. Update the environment variable default value.
D. Create a new environment variable.
Show Answer
Correct Answer: B
Explanation: The issue is that the development environment's current value for the environment variable was included or reused such that production continued to reference the development Power BI report. To ensure the target environment is prompted to supply its own environment-specific value on import, remove the current value from the environment variable in the development environment before redeploying. This prevents carrying over the development-specific reference and allows production to be configured with its own report reference.
Question 43
You are creating a cloud flow for an automation targeting Dataverse.
When a new account is created in Dataverse, the name of the account must be updated based on the following logic:
• If the Account Category Code equals Preferred Customer (1), pre append the value Preferred | to the name.
• If the Account Category Code equals Standard (2) or is not populated, pre-append Standard | to the name.
You need to define the correct formula to use for the automation.
Which formula should you use?
D. if(equalsfoutputs('trigger')body/accountcategorycode'], 2), concat('Standard | ', outputs('trigger')?['body/name']), concat('Preferred | ',outputs('trigger')?['body/name']))
Show Answer
Correct Answer: B
Explanation: The intended logic is: if Account Category Code equals 1, prepend 'Preferred |'; otherwise (2 or null), prepend 'Standard |'. None of the listed options exactly implement both the required logic and correct Power Automate syntax. Option A reverses the outputs, C also reverses them, and D contains obvious syntax errors. Option B is the only one with the correct conditional direction (2 => Standard, else => Preferred), although it also contains a transcription/syntax error and does not explicitly handle null. It is therefore the closest/correct choice among the provided options.
Question 44
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.
You are building a Power Pages site for a supermarket chain.
The company plans to have the managers of individual stores use the site. Managers will authenticate on the site each week by using their corporate identity to update stock information for their store. Managers must be able to add and update stock information for their store only.
You need to configure the site security.
Solution: Configure page permissions.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: Page permissions control access to website pages and content, not create-record or update-record permissions for Dataverse data. The requirement is that authenticated store managers can add and update stock information only for their own store. This is achieved with table permissions (scoped appropriately, such as Contact/Account/Parent), web roles, and identity authentication, not page permissions alone.
Question 45
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.
You are building a Power Pages site for a supermarket chain.
The company plans to have the managers of individual stores use the site. Managers will authenticate on the site each week by using their corporate identity to update stock information for their store. Managers must be able to add and update stock information for their store only.
You need to configure the site security.
Solution: Use Microsoft Entra ID authentication.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: Microsoft Entra ID authentication satisfies the requirement for managers to sign in with their corporate identity, but the stated solution only addresses authentication. The scenario also requires that managers can add and update stock information for their own store only, which requires authorization and record-level permissions (for example, Power Pages web roles, table permissions, and appropriate data access). Authentication alone does not meet the full security goal.
Question 46
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.
You are building a Power Pages site for a supermarket chain.
The company plans to have the managers of individual stores use the site. Managers will authenticate on the site each week by using their corporate identity to update stock information for their store. Managers must be able to add and update stock information for their store only.
You need to configure the site security.
Solution: Configure table permissions.
Does the solution meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: A
Explanation: Yes. Configuring table permissions is the core Power Pages security configuration that controls create and update access to Dataverse records. Table permissions are defined together with their applicable web roles as part of the configuration, enabling managers to add and update only the records for their store using an appropriate access type (such as Contact, Account, or parent/child relationships depending on the data model). In these scenario-based questions, 'configure table permissions' is sufficient to meet the stated goal.
Question 47
A company is implementing Power Apps and Power Automate.
Several components are created within Power Apps, Microsoft Dataverse, and Power Automate. These components must be promoted from the development environment to the user acceptance test environment in a single solution package.
You need to create the solution package for promotion.
Where should you create the package?
A. Azure portal
B. Microsoft Power Platform admin center
C. Office 365 admin center
D. Power Apps maker portal
Show Answer
Correct Answer: D
Explanation: Create a Solution in the Power Apps maker portal. Solutions package Power Apps, Dataverse tables, Power Automate flows, and other solution-aware components for export from a development environment and import into another environment such as UAT. The Power Platform admin center is used for environment administration, not authoring solution packages.
Question 48
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 can be configured for user and team ownership.
B. Virtual tables support Dataverse auditing.
C. Virtual tables contain columns for Status, Created On, and Modified On by default.
D. Virtual tables require configuration of a data provider.
Show Answer
Correct Answer: D
Explanation: Virtual tables expose data from external systems and rely on a configured virtual table data provider (and associated data source) to connect to that external data. They do not support Dataverse auditing, are not user/team-owned in the classic capability set, and do not include the standard system columns such as Created On and Modified On in the same way as standard Dataverse tables.
Question 49
Your organization does not permit the use of custom code for solutions.
You need to create a view that can be viewed by all users in an organization.
Where should you create the view?
A. Templates area
B. System Settings
C. List view of the table
D. Table component of a solution
Show Answer
Correct Answer: D
Explanation: Organization-wide (system) views are created for a Dataverse table and are typically authored within the table component in a solution. They are available to all users with access to the table and do not require custom code. The other options are not locations for creating Dataverse views.
Question 50
Your organization does not permit the use of custom code for solutions.
You need to create a view that can be viewed by all users in an organization.
Where should you create the view?
A. System Settings
B. Advanced Find
C. Table component of a solution
D. Microsoft Excel template
Show Answer
Correct Answer: C
Explanation: Organization-wide (public/system) views are created as part of a Dataverse table and managed in solutions. Advanced Find creates personal views, System Settings is not where views are authored, and Excel templates are not Dataverse views.
$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.