당신은 온라인 연습 문제를 통해 Microsoft PL-100 시험지식에 대해 자신이 어떻게 알고 있는지 파악한 후 시험 참가 신청 여부를 결정할 수 있다.
시험을 100% 합격하고 시험 준비 시간을 35% 절약하기를 바라며 PL-100 덤프 (최신 실제 시험 문제)를 사용 선택하여 현재 최신 47개의 시험 문제와 답을 포함하십시오.
/ 4
Question No : 1
DRAG DROP
You create an app with multiple screens.
Test users report that the size and type of gallery displayed on each screen are different.
You must improve the consistency for the app screens.
You need to create a reusable gallery that displays information based on the current record.
Which three 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.
정답:
Explanation:
- Create a component
- Add an input property
- Add a gallery control
From https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/create-component
step 10 and 11
Question No : 2
A company uses Microsoft platforms for all accessibility, compliance, and security auditing.
The auditing and compliance division of the company flags a newly created Power Apps canvas app due to accessibility issues. The app must be unpublished until it conforms to Microsoft accessibility requirements and recommendations.
You need to identify all accessibility issues for a solution.
What should you use?
정답: Explanation:
✑ Find accessibility issues
✑ In the upper-right corner of Power Apps Studio, select the icon for the App checker.
✑ App checker icon.
✑ In the menu that appears, select Accessibility.
✑ A list of issues appears, sorted first by severity and then by screen.
✑ Select the arrow next to an item to show details about it.
✑ Accessibility checker details.
✑ Select the back arrow to return to the list of items.
✑ If you decide to address an issue, select it to open the affected property.
✑ After you change one or more properties, select Re-check to update the list of issues.
Resolved items disappear from the list, and new items may appear.
Reference:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/accessibility-checker
https://support.microsoft.com/en-us/accessibility/enterprise-answer-desk
Question No : 3
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?
정답: 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
Question No : 4
HOTSPOT
A company uses several forms for biannual performance evaluations. The company conducts the evaluations by using a pen and paper process. The evaluations contain several performance areas that have a score of 1-10. A paragraph explains the score.
The company must scan completed performance evaluations into a Common Data Service entity by using a Power Apps app. The information in the documents must automatically map to entities and convert into quantifiable information.
If any key phrases in the scored topics cause concern, the company must follow a series of actions to prepare for a follow up.
You need to extract the information and perform the actions when the evaluations are scanned.
Which component should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
정답:
Explanation:
Graphical user interface, text, application, table, email
Description automatically generated
Box 1: AI Builder
The object detection component of AI Builder for PowerApps 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.
Box 2: Extract entities and their types from text
The Entity extraction prebuilt model identifies and classifies key elements from text into pre-defined entities. You can use the prebuilt model out of the box in power apps and power automate.
Box 3: Scope
Scope is a simple way to put similar actions and conditions together like a Stage.
Question No : 5
DRAG DROP
A company is creating Power Apps apps for their customer service team.
You must create a final released solution to export to their test environment that cannot be changed in the new environment.
You need to determine the types of solutions to use.
Which type of solution should you use? To answer, drag the appropriate solution types to the correct conditions. Each solution 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.
정답:
Explanation:
Graphical user interface, application
Description automatically generated
Box 1: Unmanaged
Unmanaged solutions are used in development environments while you make changes to your application.
Box 2: Managed
Managed solutions are used to deploy to any environment that isn't a development environment for that solution.
Question No : 6
DRAG DROP
You are an app maker for a college. You create an app for student enrollment. The app captures the education level of the applicants.
The education level at the time of enrollment is an option set is in the student entity.
The entity includes three levels:
✑ High school
✑ College
✑ Bachelor
You must split the College option into two option sets:
✑ College C 1 Year
✑ College C 2 years
The split must not impact existing data.
You need to create the two option sets.
Which three 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.
정답:
Question No : 7
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.
정답: 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
Question No : 8
HOTSPOT
You are creating a Power Automate flow.
You have an array that contains items with different color attributes.
You plan to filter the array by using the following filter expression within the flow:
@or(equals(item()?['color'], 'red'),contains(item()?['color'],'blue'))
The filter returns results only when the expression resolves to true.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.
정답:
Explanation:
A screenshot of a computer
Description automatically generated with medium confidence
Box 1: No
Box 2: Yes
The item color must be red, or item color contains blue.
Box 3: Yes
Question No : 9
You have a Power Platform solution that uses Common Data Service.
You need to secure all fields that support field-level security.
Which field can you secure?
정답: Explanation:
Which fields can be secured?
Although most attributes can be secured, there are system attributes, such as IDs, timestamps, and record tracking attributes, that can't. Below are a few examples of attributes that can't be enabled for field security.
ownerid, processid, stageid, accountid, contactid createdby, modifiedby, OwningTeam, OwningUser createdon, EntityImage_Timestamp, modifiedon, OnHoldTime, overriddencreatedon statecode, statuscode
Reference: https://docs.microsoft.com/en-us/power-platform/admin/field-level-security
Question No : 10
DRAG DROP
A company has 500 products. Each product is referenced by a product ID. Each product belongs to one of eight product categories.
You are creating an app to manage requests for new products.
The product categories will never change. Categories are defined in the column itself, not in a separate table. The data must be structured in a way that does not allow for misspellings.
Only two new tables should be created in Microsoft Dataverse:
✑ Products: Holds the products that can be requested.
✑ Requests: Holds the requests for the product ID and quantity.
The products are filtered by product category.
You need to identify the data types to use when building the table columns in Dataverse.
Which data type should you use? To answer, drag the appropriate data types to the correct requirements. Each data 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.
정답:
Explanation:
Box 1: Text
Text columns can contain text characters. This column type has several format options that will change the presentation of the text.
Box 2: Lookup
When you create a new lookup column you are creating a new Many-to-One (N:1) table relationship between the table you’re working with and the Target Row Type defined for the lookup.
Box 3: Choice
You can customize forms (main, quick create, and quick view) and email templates by adding multi-select columns that are called Choices. When you add a choices column, you can specify multiple values that will be available for users to select. When users fill out the form, they can select one, multiple, or all the values displayed in a drop-down list.
Question No : 11
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 model-driven chart on the country/region table that aggregates the total amount of the orders by country/region.
Does the solution meet the goal?
정답: 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
Question No : 12
DRAG DROP
A company must use a Power Apps app custom control that is exported from a different canvas Power Apps app.
You need to insert the custom control into the Power Apps app.
Where should you complete the actions? To answer, drag the appropriate locations to the correct actions. Each location 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.
DRAG DROP
You store data about products in two Microsoft Excel worksheets.
The data contains duplicate rows.
You need to consolidate data from the two worksheets into a Microsoft Dataverse custom table.
In which order should you perform the actions? To answer, move all actions from the list of actions to the answer area and arrange them in the correct order.
정답:
Explanation:
Graphical user interface, text, application, email
Description automatically generated
Step 1: Upload the worksheets to OneDrive
A data source needs to be specified. The data needs to be available.
Step 2: Create a dataflow
Step 3: Create queries for the worksheets
You can shape your data selection into a form that works best for your table using a Power Query editing experience, similar to the Power Query Editor in Power BI Desktop.
Step 4: Add conditional columns to perform checks on the data
Step 5: Append the output of the queries
Question No : 14
HOTSPOT
A company uses two SQL Server environments and two Common Data Service environments.
The company policy states that only specific administrators can create environments. SQL Server and Common Data Service groups must be distinct.
You need to assign security access.
What should you assign? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
정답:
Explanation:
Graphical user interface, text, application
Description automatically generated
Box 1: System Administrator and Environment Security group Security model for the databases When a database is created, the users who have environment roles assigned to them, will continue to maintain those privileges.
Users with Environment Admin role are now assigned to System Administrator role. Users with Environment Maker continue to possess the same role.
Box 2: Environment Admin
The Environment Admin role can perform all administrative actions on an environment, including the following:
✑ Add or remove a user from either the Environment Admin or Environment Maker role.
Box 3: Environment Maker
Environment Maker: Can create new resources associated with an environment, including apps, connections, custom APIs, gateways, and flows using Microsoft Power Automate.
However, this role doesn't have any privileges to access data within an environment. More information:
Box 4: System Customizer
System Customizer: Has full permission to customize the environment. However, users with this role can only view records for environment entities that they create.
Question No : 15
HOTSPOT
A coworker creates a canvas app.
The canvas app contains the following formula.
The formula is attached to the OnVisible property of the first screen that users see:
You are updating the canvas app.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.
정답:
Explanation:
Box 1: No
Records are added, not updated.
Box 2: Yes
The Collect function adds records to a data source.
Syntax: Collect (DataSource, Item, ... )
DataSource C Required. The data source that you want to add data to. If it doesn't already exist, a new collection is created.
Item(s) - Required. One or more records or tables to add to the data source.
Box 3: No
No records are cleared.