ExamGecko
Home Home / Microsoft / PL-100

Microsoft PL-100 Practice Test - Questions Answers

Question list
Search
Search

List of questions

Search

Related questions











You need to set the value for a global variable named RunningTotal to 5 and navigate to the previous screen named MainScreen. Which formula should you use?

A.

UpdateContext( { RunningTotal: 5 } ); Navigate( MainScreen,

ScreenTransition.Cover, RunningTotal );

A.

UpdateContext( { RunningTotal: 5 } ); Navigate( MainScreen,

ScreenTransition.Cover, RunningTotal );

Answers
B.

If( Value(TextBox1.Text) >= 0, (Set( RunningTotal, 5);

Back();), Color.Green )

B.

If( Value(TextBox1.Text) >= 0, (Set( RunningTotal, 5);

Back();), Color.Green )

Answers
C.

UpdateContext( { RunningTotal:5 } ); Back()

C.

UpdateContext( { RunningTotal:5 } ); Back()

Answers
D.

Set( RunningTotal, 5 ); Back();

D.

Set( RunningTotal, 5 ); Back();

Answers
Suggested answer: D

Explanation:

You set the value of the global variable with the Set function. Set( MyVar, 1 ) sets the global variable MyVar to a value of 1.

Use the Back and Navigate function to change which screen is displayed.

Reference:

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/working-with-variables

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

HOTSPOT

You are configuring security to enable users to analyze data by using Microsoft Excel templates.

You create a security role named TemplateAdministrator and configure the role as shown below and assign the role to a user named User1.

Use the drop-down menus to select the answer choice that answers each question based on the information presented in the graphic.

NOTE: Each correct selection is worth one point.


Question 2
Correct answer: Question 2

HOTSPOT

An administrator plans to create and deploy dashboards for use only by sales associates. The dashboards will display the current sales pipeline, open cases, recent major wins, and key opportunities by postal code.

Sales associates must be able to act on the specific data displayed in dashboards.

You need to create the dashboards.

Which type of dashboards should you create? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.


Question 3
Correct answer: Question 3

Explanation:

Box 1: User

Type of dashboard: If you want your dashboards to be available across the organization and do not want to manage the access levels at a more detailed level, you might want to create an organization-owned dashboard. However, if you are concerned about the access privileges and security of your dashboard, consider creating a user-owned dashboard where you have more control on who can access it.

Box 2: Single-stream

The single-stream dashboards display real-time data over one stream based on an entity view or queue. The single-stream dashboards are typically helpful to Tier 2 service leads or managers, who monitor fewer, but more complex or escalated cases.

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/create-dashboard

https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/configure-interactive-experience-dashboards

DRAG DROP

You are developing a Power BI report for a company.

The Power BI report must display company performance metrics in Power BI service. The report must include three fields in a visualization. The data for the report exists in a dataset.

The company will display the report on a large television screen during team meetings.

You need to create the report.

Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer and arrange them in the correct order.


Question 4
Correct answer: Question 4

Explanation:

Box 1: Select a dataset

Sign in to your Power BI online account, or sign up, if you don't have an account yet.

Open the Power BI service.

Get some data and open it in report view.

Box 2: Create a report

Use that data to create visualizations and save it as a report.

Box 3: Add a visualization to the report

Box 4: Add the report to a new dashboard

Visualizations (known as visuals for short) display insights that have been discovered in the data. A Power BI report might have a single page with one visual or it might have pages full of visuals. In the Power BI service, visuals can be pinned from reports to dashboards.

Reference:

https://docs.microsoft.com/en-us/power-bi/fundamentals/service-get-started

https://docs.microsoft.com/en-us/power-bi/visuals/power-bi-report-visualizations

DRAG DROP

The company is adding a multi-stream interactive dashboard to a model-driven app.

The company requires configuration of the dashboard to filter the table data based on modified accounts over the last month.

You need to configure the filters for the model-driven app dashboard.

Which configuration should you use? To answer, drag the appropriate locations to the correct requirements. Each configuration 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.


Question 5
Correct answer: Question 5

Explanation:

Box 1: Filter table

Filter Table: The visual filters and global filter attributes are based on this table.

Box 2: Filter By

Filter By: The column that the time frame filter applies to.

Incorrect Answers:

Table View: The visual filters are based on this view.

Time Frame: The default time frame filter value for the Filter By column.

Reference:

https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/configure-interactive-experience-dashboards

DRAG DROP

You are an app and report maker. You provide visualizations for two departments in an organization.

Each department requires department-specific visualizations:

You need to create the visualizations.

Which chart type should you use? To answer, drag the appropriate chart type to the correct requirements. Each chart 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.


Question 6
Correct answer: Question 6

Explanation:

Box 1: Tag

Box 2: Multi-series

Multi-series charts: Charts that display data with multiple series values mapped to a single category value.

Incorrect Answers:

Multi-series charts include stacked column charts, which vertically display the contribution of each series to a total across categories, and 100% stacked column charts, which compare the percentage that each series contributes to a total across categories.

Reference:

https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/understand-charts-underlying-data-chart-representation

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.

You need to automatically detect bicycles in pictures taken with the camera.

Proposed solution:

Create an Object Detection custom model in AI Builder.

Train the model with pictures of bicycles and then publish the trained model.

Add the Object Detector control to your canvas app.

Does the solution meet the goal?

A.

Yes

A.

Yes

Answers
B.

No

B.

No

Answers
Suggested answer: A

Explanation:

To train an object detection model to recognize your objects, you have to gather images that contain those objects. The first thing you'll do when you create an AI Builder object detection model is to define its domain. Upload images

Then Train and publish your object detection model

The object detector component takes a photo or loads an image file to do an object detection scan. On a mobile device, the user chooses between taking a photo or selecting one already available in the device user interface. When an image is selected, the component automatically scans it to identify objects.

Reference:

https://docs.microsoft.com/en-us/ai-builder/prediction-overview

https://docs.microsoft.com/en-us/ai-builder/object-detector-component-in-powerapps

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.

You need to automatically detect bicycles in pictures taken with the camera.

Proposed solution:

Create a Prediction custom model in AI Builder.

Train the model with pictures of bicycles and then publish the trained model.

Add the Object Detector control to your canvas app.

Does the solution meet the goal?

A.

Yes

A.

Yes

Answers
B.

No

B.

No

Answers
Suggested answer: B

Explanation:

Instead create an Object Detection custom model

Note: AI Builder prediction models analyze patterns in historical data that you provide. Prediction models learn to associate those patterns with outcomes. Then, we use the power of AI to detect learned patterns in new data, and use them to predict future outcomes.

Reference:

https://docs.microsoft.com/en-us/ai-builder/prediction-overview

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.

You need to automatically detect bicycles in pictures taken with the camera.

Proposed solution:

Create a Category Classification custom model in AI Builder.

Train the model with pictures of bicycles and then publish the trained model.

Add the Object Detector control to your canvas app.

Does the solution meet the goal?

A.

Yes

A.

Yes

Answers
B.

No

B.

No

Answers
Suggested answer: B

Explanation:

Instead create an Object Detection custom model

Reference:

https://docs.microsoft.com/en-us/ai-builder/prediction-overview

https://docs.microsoft.com/en-us/ai-builder/object-detector-component-in-powerapps

DRAG DROP

A company uses data from a publicly available web service. You plan to create a tabular report by using Power BI Desktop to visualize data from the web service.

The data returned in one column is numeric and must be converted to a corresponding text value. The most up-to-date version of the data must always be used. You need to create the report and make it available only to co-workers.

Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select.


Question 10
Correct answer: Question 10

Explanation:

Step 1: Create a table and input the data from the web service

Step 2: Perform data transformation

Step 3: Create the visualization.

Step 4: Publish to AppSource

With Power BI apps, you can create collections of dashboards and reports and publish these collections as apps to your whole organization or to specific people or groups.

Business users get your apps in a few different ways:

They can find and install your app from Microsoft AppSource.

You can send them a direct link.

Reference:

https://docs.microsoft.com/en-us/power-bi/collaborate-share/service-create-distribute-apps

Total 271 questions
Go to page: of 28