Visit Official SkillCertPro Website :-
For a full set of 1110+ questions. Go to
https://skillcertpro.com/product/pl-900-exam-questions/
SkillCertPro offers detailed explanations to each question which helps to understand the concepts better.
It is recommended to score above 85% in SkillCertPro exams before attempting a real exam.
SkillCertPro updates exam questions every 2 weeks.
You will get life time access and life time free updates
SkillCertPro assures 100% pass guarantee in first attempt.
1. Question
What are the built-in accessibility features in Power BI? Please select all that apply.
A. Keyboard navigation
B. Screen-reader compatibility
C. High contrast colors view
D. Focus mode
E. Dark mode
F. Show data table
Answer: A, B, C, D, F
Explanation:
Power BI has several built-in accessibility features that help users with disabilities access and interact with reports. One of these features is keyboard navigation, which enables users to navigate through a report using the keyboard. The screen reader is another feature that reads out the title, visual type, and any alt text set in the report. Additionally, Power BI Desktop can detect high-contrast themes being used and publish reports in high-contrast colors in the Power BI service. Focus mode is a useful feature that enables users to expand visuals to fill up more of their screen. It also allows users to view data in a screen-reader-friend way in a tabular format. However, it is important to note that focus mode is not a built-in accessibility feature in Power BI.
Reference
https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-accessibility-creating-reports
2. Question
Which of the following actions do developers use to rename an element in each object in an array when building a Power Automate flow?
A. Compose
B. Join
C. Parse JSON
D. Select
Answer: D
Explanation:
Developers can use the “Select“ action to transform data by mapping properties from the input data to new properties in the output data. This action can be used to rename an element in each object in an array by specifying the source property name and the desired new property name.
In contrast, “Parse JSON“ is used to parse a JSON string into an array or an object. “Join“ is used to join an array of strings into a single string, and “Compose“ is used to create a new value by combining or manipulating existing values.
Reference
https://docs.microsoft.com/en-us/power-automate/data-operations
3. Question
Which of the following actions do developers use to execute a block of actions for each item in the input array when building a Power Automate flow?
A. Condition
B. Apply to each
C. Do Until
D. Scope
Answer: B
Explanation:
The “Apply to each“ action is specifically designed to iterate through an array and execute a block of actions for each item in the array. This action is commonly used in Power Automate flows to process multiple items from a data source, such as SharePoint or Excel.
The other options are not designed for this specific use case. For example, “Condition“ allows the flow to make a decision based on a specified condition, “do until“ loops the flow until a specific condition is met, and “scope“ is used to define a scope for a set of actions.
Reference
https://docs.microsoft.com/en-us/power-automate/odata-filters
4. Question
Which of the following actions do developers use to enter identical data multiple times when building a Power Automate flow?
A. Compose
B. Join
C. Do Until
D. Condition
Answer: A
Explanation:
The “Compose“ action allows developers to define and store a value that can be reused multiple times within the same flow. “Join“ is an action that combines multiple values into a single string, and “Do Until“ is a loop action that repeats a set of actions until a certain condition is met.
“Condition“ is an action that evaluates a condition and directs the flow of the execution to different branches based on the result. While these actions can be useful in a flow, they do not provide a straightforward way to enter identical data multiple times.
Reference
https://docs.microsoft.com/en-us/learn/modules/build-automated-solution/2a-build-recurring-flows
5. Question
What are the advantages of using the Power Apps component framework? Please select all that apply.
A. Support of client frameworks such as React and AngularJS
B. Use of responsive web design principles, so that the display is optimized and interacts with any screen size
C. Reusability of component
D. Easily add AI to workflows
E. Ability to bundle multiple files into a single solution file
F. Access to a set of framework APIs that supports component lifecycle management, contextual data, and metadata
Answer: A, B, C, E, F
Explanation:
The advantages associated with using the Power Apps component framework, such as support for client frameworks, responsive web design principles, reusability, bundling multiple files, and access to framework APIs. These advantages can make development easier and more efficient, which can save time and resources. The incorrect answer about easily adding AI to workflows is not a feature of the Power Apps component framework, and therefore is not a valid advantage associated with using it.
Reference
https://docs.microsoft.com/en-us/learn/modules/get-started-component-framework/1-introduction
For a full set of 1110+ questions. Go to
https://skillcertpro.com/product/pl-900-exam-questions/
SkillCertPro offers detailed explanations to each question which helps to understand the concepts better.
It is recommended to score above 85% in SkillCertPro exams before attempting a real exam.
SkillCertPro updates exam questions every 2 weeks.
You will get life time access and life time free updates
SkillCertPro assures 100% pass guarantee in first attempt.
6. Question
Which of the following authentication settings are available on the Identity providers page of Portal? Please select all that apply.
A. Internal login
B. External login
C. Open Registration
D. Require unique email
Answer: B, C, D
Explanation:
The Identity Providers page in Portal enables you to configure external authentication settings, such as External Login, which allows users to sign in with external accounts from providers such as Microsoft, Facebook, or Google. Open Registration allows for public registration and self-service sign-ups, while Require Unique Email ensures that users cannot create multiple accounts with the same email address. The incorrect answer, Internal Login, is not an authentication setting available on the Identity Providers page, as it refers to logging in with credentials stored within the app or organization‘s identity system.
Reference
7. Question
Which of the following media controls are available for you when building a canvas app? Please select all that apply.
A. Camera
B. Barcode scanner
C. Microphone
D. Object Detection
Answer: A, B, C
Explanation:
The camera, barcode scanner, and microphone are all available media controls when building a canvas app in Power Apps. The camera control allows users to take pictures and videos, the barcode scanner control allows for the scanning of barcodes and QR codes, and the microphone control enables the recording of audio.
The incorrect answer, object detection, is not a media control in Power Apps, but rather a computer vision AI capability that can be used with the camera control.
Reference
https://docs.microsoft.com/en-us/learn/modules/controls-canvas-apps/5-media
8. Question
Which of the following elements contains the definition of the properties that can be configured in the application when using the component?
A. Manifest
B. Code Component
C. Resource File
D. CSS
Answer: A
Explanation:
The manifest file is an important element of a Power Apps component as it contains the definition of the properties that can be configured in the application when using the component. The manifest file specifies the inputs and outputs of the component, along with their data types and descriptions.
The code component refers to the actual code for the component, while the resource file contains any additional resources that the component requires. CSS refers to Cascading Style Sheets, which are used to define the presentation of HTML elements.
References
https://docs.microsoft.com/en-us/powerapps/developer/component-framework/custom-controls-overview
https://docs.microsoft.com/en-us/learn/modules/get-started-component-framework/2-architecture
9. Question
Which of the following methods do developers use to manage bound properties in control when developing a Power Apps component?
A. init
B. update view
C. get Outputs
D. destroy
Answer: C
Explanation:
When developing a Power Apps component, developers use the getOutputs method to manage bound properties in control. This method is used to retrieve the value of an output property from a control instance. The init, updateView, and destroy methods are used for other purposes such as initializing a control, updating its view, or cleaning up after it. Therefore, they are not relevant to managing bound properties in a Power Apps component.
Reference
https://docs.microsoft.com/en-us/learn/modules/get-started-component-framework/2-architecture
10. Question
Which data export options are available in Power BI report designers when exporting data from either Power BI service or Power BI Report Server? Please select all that apply.
A. Allow end users to export summarized data
B. Allow end users to export highly confidential data
C. Allow end users to export both summarized and underlying data
D. Dont allow end users to export any data
Answer: A, C, D
Explanation:
Users can choose to allow end users to export summarized data, which provides a limited amount of data, or to allow end users to export both summarized and underlying data, which provides more detailed data. Alternatively, they can choose not to allow end users to export any data.
The incorrect answers, such as allowing end users to export highly confidential data, are incorrect because they do not accurately reflect the available data export options in Power BI.
Reference
https://docs.microsoft.com/en-us/power-bi/visuals/power-bi-visualization-export-data
For a full set of 1110+ questions. Go to
https://skillcertpro.com/product/pl-900-exam-questions/
SkillCertPro offers detailed explanations to each question which helps to understand the concepts better.
It is recommended to score above 85% in SkillCertPro exams before attempting a real exam.
SkillCertPro updates exam questions every 2 weeks.
You will get life time access and life time free updates
SkillCertPro assures 100% pass guarantee in first attempt.