ExamGecko
Home Home / Microsoft / PL-100

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

Question list
Search
Search

List of questions

Search

Related questions











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?

A.

Yes

A.

Yes

Answers
B.

No

B.

No

Answers
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

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?

A.

Yes

A.

Yes

Answers
B.

No

B.

No

Answers
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

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?

A.

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.

A.

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.

Answers
B.

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

B.

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

Answers
C.

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

C.

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

Answers
D.

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.

D.

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.

Answers
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/

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?

A.

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

A.

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

Answers
B.

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

B.

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

Answers
C.

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

C.

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

Answers
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:

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

Reference:

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

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.

A.

Collect

A.

Collect

Answers
B.

Patch

B.

Patch

Answers
C.

Navigate

C.

Navigate

Answers
D.

Set

D.

Set

Answers
E.

UpdateContext

E.

UpdateContext

Answers
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

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?

A.

SaveData, LoadData

A.

SaveData, LoadData

Answers
B.

Set, Patch

B.

Set, Patch

Answers
C.

Patch, Collect

C.

Patch, Collect

Answers
D.

Set, Collect

D.

Set, Collect

Answers
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

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.

A.

Add a drop-down field in the app

A.

Add a drop-down field in the app

Answers
B.

Create a Global Option Set

B.

Create a Global Option Set

Answers
C.

Add a new business rule

C.

Add a new business rule

Answers
D.

Add a component to the component library

D.

Add a component to the component library

Answers
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/

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?

A.

Yes

A.

Yes

Answers
B.

No

B.

No

Answers
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

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?

A.

Yes

A.

Yes

Answers
B.

No

B.

No

Answers
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

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?

A.

Yes

A.

Yes

Answers
B.

No

B.

No

Answers
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

Total 271 questions
Go to page: of 28