ExamGecko
Home / Microsoft / PL-100 / List of questions
Ask Question

Microsoft PL-100 Practice Test - Questions Answers, Page 3

List of questions

Question 21

Report
Export
Collapse

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 creating a canvas app that displays a list of accounts.

Users must be able to select an account and view details for the account. The app must include a feature that brings the user back to the list of accounts.

You add a blank screen named Screen_Accounts and add a gallery named Gallery_Accounts to the screen. You set the data source of Gallery_Accounts to Accounts and add another blank screen named Screen_AccountDetail.

You need to complete the app.

Solution:

Add an edit form to Screen_AccountDetail and set the Default Mode of the form to New

Set the OnSelect property of Gallery_Accounts to Navigate(Screen_AccountDetail).

Set the data source of the form to Accounts.

Set the Item property of the form to Selected.

Add a back icon on Screen_AccountDetail and set its OnSelect property to Navigate(Screen_Accounts).

Does the solution meet the goal?

Yes

Yes

No

No

Suggested answer: B

Explanation:

FormMode.New: the form is populated with default values and the user can modify the values of the fields. Once complete, the user can add the record to the data source.

Reference:

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-form

asked 05/10/2024
Sonjoy Kanwal
42 questions

Question 22

Report
Export
Collapse

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 creating a canvas app that displays a list of accounts.

Users must be able to select an account and view details for the account. The app must include a feature that brings the user back to the list of accounts.

You add a blank screen named Screen_Accounts and add a gallery named Gallery_Accounts to the screen. You set the data source of Gallery_Accounts to Accounts and add another blank screen named Screen_AccountDetail.

You need to complete the app.

Solution:

Add a display form to Screen_AccountDetail.

Set the OnSelect property of Gallery_Accounts to Navigate(Screen_AccountDetail).

Set the data source of the form to Accounts.

Set the Item property of the form to Selected.

Add a back icon on Screen_AccountDetail and set its OnSelect property to Navigate(Screen_Accounts).

Does the solution meet the goal?

Yes

Yes

No

No

Suggested answer: A

Explanation:

If you add a Display form control, the user can display all fields of a record or only the fields that you specify.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/controls/control-form-detail

asked 05/10/2024
Yesaldine Salazar
42 questions

Question 23

Report
Export
Collapse

You are developing a canvas app to monitor time. The app includes a Text Input control named TIC1 and a Timer control named TIM1. You need to set TIM1 to a default value.

What should you do?

In the OnChange property of TIC1, set the value of the Text property for TIC1 to a context variable that stores the duration value. Assign the value of the variable to the OnTimerStart property for TIM1.

In the OnChange property of TIC1, set the value of the Text property for TIC1 to a context variable that stores the duration value. Assign the value of the variable to the OnTimerStart property for TIM1.

Assign the Text property of TIC1 to the Duration property of TIM1.

Assign the Text property of TIC1 to the Duration property of TIM1.

Assign the Text property of TIC1 to the OnSelect property of a TIM1.

Assign the Text property of TIC1 to the OnSelect property of a TIM1.

Write code in the OnChange property of TIC1 that assigns the value of the Duration property of the Timer control to Text property of the TIC1. In the OnChange property of TIC1, assign the value to the Duration property for TIM1.

Write code in the OnChange property of TIC1 that assigns the value of the Duration property of the Timer control to Text property of the TIC1. In the OnChange property of TIC1, assign the value to the Duration property for TIM1.

Suggested answer: D

Explanation:

The OnTimerStart, OnTimerEnd and OnSelect are the configurations where you can add your code.

Reference:

https://sharepains.com/2019/08/22/all-about-timers-in-powerapps/

asked 05/10/2024
Letlhogonolo Phiri
35 questions

Question 24

Report
Export
Collapse

You create and publish a canvas app component library to perform complex calculations.

You discover an error in one of the calculations. You correct the issue and publish the component library. A co-worker uses the original version of the component library in a canvas app. You need to ensure that the co-worker uses the updated version of the component library.

What should you do?

Export the updated component library and instruct the co-worker to import the updated version into the canvas app

Export the updated component library and instruct the co-worker to import the updated version into the canvas app

Inform the co-worker to edit the canvas app and manually add the updated version of the component library

Inform the co-worker to edit the canvas app and manually add the updated version of the component library

Instruct the co-worker to edit the canvas app and update the component library

Instruct the co-worker to edit the canvas app and update the component library

Suggested answer: C

Explanation:

You can modify an existing component library and save any changes with additional version notes. However, the updated component library version must be published for use in existing apps that use the component library. Makers of other apps are notified of updated components being available. The notification appears when makers edit the apps in canvas app studio. They can choose to update the components:

Microsoft PL-100 image Question 14 explanation 105717 10052024010645000000

Select Review, and you'll see the option to update the component:

Microsoft PL-100 image Question 14 explanation 105717 10052024010645000000

Reference:

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/component-library

asked 05/10/2024
NEURONES TECHNOLOGIES
42 questions

Question 25

Report
Export
Collapse

You are creating a canvas app. You plan to use variables that are scoped to a screen to store values. You need to create and update the value of the variables.

Which three functions can you use? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Collect

Collect

Patch

Patch

Navigate

Navigate

Set

Set

UpdateContext

UpdateContext

Suggested answer: B, C, E

Explanation:

B: Use the Patch function to modify records in complex situations. Such as, when you do updates that require no user interaction or use forms that span multiple screens.

CE: Context variables are scoped for Screen. They are great for passing values to a screen, much like parameters to a procedure in other languages. Can be referenced from only one screen. Functions available for context variables:

UpdateContext

Navigate

Note:

Use the UpdateContext function to create a context variable, which temporarily holds a piece of information, such as the number of times the user has selected a button or the result of a data operation.

Context variables are also preserved when a user navigates between screens. You can use Navigate to set one or more context variables for the screen that the formula will display, which is the only way to set a context variable from outside the screen.

Reference:

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-patch

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-navigate

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-updatecontext

asked 05/10/2024
Aziz ZENNOUN
47 questions

Question 26

Report
Export
Collapse

You are creating a canvas app.

You need to store and retrieve small amounts of data on a local device when the app is offline.

Which set of functions should you use?

SaveData, LoadData

SaveData, LoadData

Set, Patch

Set, Patch

Patch, Collect

Patch, Collect

Set, Collect

Set, Collect

Suggested answer: A

Explanation:

LoadData and SaveData combine to form a simple mechanism to store small amounts of data on a local device. By using these functions, you can add simple offline capabilities to your app.

Reference: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/offline-apps

asked 05/10/2024
edoardo peraino
26 questions

Question 27

Report
Export
Collapse

You are creating a canvas app.

You need to display a limited list of choices to the end user. You must standardize the values and appearance of the list across all forms. Which two actions should you perform? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.

Add a drop-down field in the app

Add a drop-down field in the app

Create a Global Option Set

Create a Global Option Set

Add a new business rule

Add a new business rule

Add a component to the component library

Add a component to the component library

Suggested answer: A, B

Explanation:

A global Option Set can be shared across entities.

Reference: https://powerapps.microsoft.com/en-us/blog/option-sets-and-many-to-many-relationships-for-canvas-apps/

asked 05/10/2024
Petya Pavlova
43 questions

Question 28

Report
Export
Collapse

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 has locations in multiple countries and regions across four continents.

The company stores the total amount of each order in the local currency of the country/region where the customer is located. The company stores the applicable exchange rates in a custom US dollars (USD) exchange rate table. You need to create a visualization that displays the total amount of orders by country/region in USD. Proposed solution:

Create a custom column that converts the order total to USD by using the relationship between order local currency and the USD exchange rate table in Power BI Desktop and display this column in a Power BI chart by country/region. Does the solution meet the goal?

Yes

Yes

No

No

Suggested answer: B

Explanation:

Instead use a calculated field.

Need to calculate the exchange rate in USD.

Calculated columns are calculated in real-time when they are retrieved.

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/data-platform/calculated-rollup-attributes

asked 05/10/2024
metodija durtanoski
41 questions

Question 29

Report
Export
Collapse

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 has locations in multiple countries and regions across four continents.

The company stores the total amount of each order in the local currency of the country/region where the customer is located. The company stores the applicable exchange rates in a custom US dollars (USD) exchange rate table. You need to create a visualization that displays the total amount of orders by country/region in USD. Proposed solution:

Create a custom rollup field of type currency on the country/region table that aggregates all the total amounts for the orders from that country/region and display this rollup field in a Power BI chart. Does the solution meet the goal?

Yes

Yes

No

No

Suggested answer: B

Explanation:

Instead use a calculated field.

Need to calculate the exchange rate in USD.

Calculated columns are calculated in real-time when they are retrieved.

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/data-platform/calculated-rollup-attributes

asked 05/10/2024
Rajeev Parameswaran
38 questions

Question 30

Report
Export
Collapse

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 has locations in multiple countries and regions across four continents.

The company stores the total amount of each order in the local currency of the country/region where the customer is located. The company stores the applicable exchange rates in a custom US dollars (USD) exchange rate table.

You need to create a visualization that displays the total amount of orders by country/region in USD.

Proposed solution:

Create a custom calculated field of type currency on the order table that converts the order total to USD and displays the total amounts by region in a Power BI chart.

Does the solution meet the goal?

Yes

Yes

No

No

Suggested answer: A

Explanation:

Instead use a calculated field.

Need to calculate the exchange rate in USD.

Calculated columns are calculated in real-time when they are retrieved.

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/data-platform/calculated-rollup-attributes

asked 05/10/2024
Mark David
44 questions
Total 271 questions
Go to page: of 28
Search

Related questions